/* --------------------- All page  --------------------- */
@font-face {
  font-family: 'Helvetica';
  src: url('../font/Helvetica.ttf') format('truetype'),
    url('../font/Helvetica-Bold.ttf') format('truetype'),
    url('../font/Helvetica-BoldOblique.ttf') format('truetype'),
    url('../font/helvetica-compressed-5871d14b6903a.otf') format('opentype'),
    url('../font/helvetica-light-587ebe5a59211.ttf') format('truetype'),
    url('../font/Helvetica-Oblique.ttf') format('truetype'),
    url('../font/helvetica-rounded-bold-5871d05ead8de.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0%;
  padding: 0%;
  font-family: Helvetica;
  box-sizing: border-box;
}

main {
  padding-top: 10vh;
}

@media (orientation: landscape) {

.grosFondu{
  background: linear-gradient(to top, #5dc497 5%, #92cdb3 20%, #ffffff 60%);
}
}

/* -------------------------------------------------------- */

/* --------------------- LandingPage  --------------------- */


@media (orientation: landscape) {

  /* Conteneur page */
  .landingPage {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    background-color: #00ab84;
  }

  .boxEntreprise {
    width: 40vw;
  }

  .boxLogoLine {
    width: 20vw;
    display: flex;
    flex-direction: column;
  }

  .boxParticulier {
    width: 40vw;
  }

  .boxLineTop {
    height: 30vh;
    display: flex;
    justify-content: center;
  }

  .boxLogoLandingPage {
    height: 40vh;
    display: flex;
    justify-content: center;
  }

  .boxLineBottom {
    height: 30vh;
    display: flex;
    justify-content: center;
  }

  .logoLandingPage {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 0.7s ease;
  }

  /* Liens */
  .boxEntreprise a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .boxParticulier a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .entrepriseLandingPage h2 {
    color: #000;
    font-size: 200%;
    transition: 0.7s font-size ease;
  }

  .particulierLandingPage h2 {
    color: #000;
    font-size: 200%;
    transition: 0.7s font-size ease;
  }

  .entrepriseLandingPage h2:hover {
    color: #000;
    font-size: 250%;
    transition: 0.7s font-size ease;
  }

  .particulierLandingPage h2:hover {
    color: #000;
    font-size: 250%;
    transition: 0.7s font-size ease;
  }

  .logoLandingPage:hover {
    transform: scale(1.2);
    transition: transform 0.7s ease;
  }

}

@media (orientation: portrait) {

  /* Conteneur page */
  .landingPage {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-color: #00ab84;
  }

  .boxEntreprise {
    height: 40vh;
  }

  .boxLogoLine {
    height: 20vh;
    display: flex;
    flex-direction: row;

  }

  .boxParticulier {
    height: 40vh;
  }

  .boxLineTop {
    width: 30vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .boxLogoLandingPage {
    width: 40vw;
    display: flex;
    justify-content: center;
  }

  .boxLineBottom {
    width: 30vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .logoLandingPage {
    width: 100%;
    height: 100%;
  }

  /* Liens */
  .boxEntreprise a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .boxParticulier a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .entrepriseLandingPage h2 {
    color: #000;
    font-size: 150%;
  }


  .particulierLandingPage h2 {
    color: #000;
    font-size: 150%;
  }
}

/* -------------------------------------------------------- */

/* ------------------ Header of all page ------------------ */

/* Par défaut */
.navbar-landscape {
  display: block;
}

.navbar-portrait,
.sidebar {
  display: none;
}

@media (orientation: portrait) {
  .navbar-landscape {
    display: none;
  }

  .navbar-portrait,
  .sidebar {
    display: block;
  }

  .openbtn {
    display: block;
  }
}

@media (orientation: landscape) {

  /* Box Header */
  .navbar {
    background-color: #FFFFFF;
    width: 100vw;
    height: 12vh;
    padding: 0%;
    position: fixed;
    border-bottom: 1px solid #00ab84;
    z-index: 1;
  }

  header {
    height: 100%;
  }

  header .ulBtnUl {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }

  /*  */

  /* Ul ou box img */
  .ulNav1 {
    list-style: none;
    display: flex;
    height: 100%;
    width: 60vw;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 150%;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
  }

  .divLogoNavbar {
    height: auto;
    width: 18vh;
    display: block;
  }

  .ulNav2 {
    list-style: none;
    display: flex;
    height: 100%;
    width: 60vw;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 150%;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
  }

  /*  */

  /* Logo */
  .logoBM {
    height: auto;
    display: block;
  }

  .logoBM a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logoBM img {
    width: 100%;
    height: 100%;
    border: 2px solid #00ab84;
    transition: box-shadow 0.7s ease;
    box-shadow: 0px 30px 15px rgba(0, 0, 0, 0.3);
  }

  .logoBM img:hover {
    width: 100%;
    height: 100%;
    border: 2px solid #00ab84;
    box-shadow: 0px 35px 10px rgba(0, 0, 0, 0.3);
  }

  /* Liste */
  header li {
    height: 100%;
    width: 34%;
    align-items: center;
    transition: border-bottom 0.7s ease;
    border-bottom: 5px solid white;
  }

  header li a {
    color: #000000;
    text-decoration: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5vw;
  }

  header li:hover {
    border-bottom: 5px solid #00ab84;
  }

  header a b {
    color: #00ab84;
  }
}

@media (orientation: portrait) {

  /* Box Header */
  .navbar {
    background-color: #FFFFFF;
    width: 100vw;
    height: 10%;
    padding: 0%;
    position: fixed;
    border-bottom: 1px solid #00ab84;
    z-index: 1;
  }

  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid black;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }

  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #000000;
    display: block;
    transition: 0.3s;
  }

  .sidebar a:hover {
    color: #000;
  }

  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 36px;
    margin-left: 50px;
  }

  .openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    height: 7%;
    width: 17%;
    color: #00ab84;
    border: none;
    padding: 1%;
    position: fixed;
    z-index: 1;
    font-size: 250%;
    right: 10px;
  }

  .smallLogoBM img {
    margin-top: 5px;
    width: 16%;
    max-width: 90px;
    margin-left: 7px;
    float: left;
  }
}

/*  */

/* -------------------------------------------------------- */

/* ------------------ Entreprise - Particulier ------------------ */

@media (orientation: landscape) {

  /* Image présentation page */
  .imgListePrestation {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .totalContenu {
    margin-top: 12vh;
    margin-inline: 7% 7%;
  }

  h2 {
    color: #00ab84;
    font-size: 150%;
  }

  /* Conteneur titre page */
  .lienPageListePrestation {
    margin-bottom: 0%;
    font-size: 200%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-inline: 1.8% 1.8%;
  }

  /* Lien sur le titre de la page */
  .lienPageListePrestation a {
    text-decoration: none;
    color: #00ab84;
    margin-right: 10%;
  }

  .blockPrestations {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    margin-bottom: 0%;
    margin-top: 2%;
  }

  .elementPrestation {
    padding: 2%;
    border: 2px solid white;
    border-bottom: 2px solid #00ab84;
    background-color: white;
    width: 29%;
    margin: 1.9%;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    color: black;
  }

  .elementPrestation p {
    color: #000000;
  }

  .elementPrestation h3 {
    margin-bottom: 3%;
    color: #000000;
    font-size: 130%;
  }

  .elementPrestation:hover {
    border: 2px solid #00ab84;
    box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.3);
  }

  .elementPrestation:hover .listePresta {
    color: #00ab84;
  }


  .elementPrestation {
    opacity: 0;
    transform: translateY(50px);
  }

  .elementPrestation.visible {
    opacity: 1;
    transform: translateY(-20px);
    transition: opacity 0.7s ease, transform 1s ease;
  }

  .retourFleche {
    margin-top: 4vh;
    margin-left: 2.5vh;
    position: fixed;
  }

  .retourFleche img {
    width: 20%;
  }
}

@media (orientation: portrait) {

  /* Image présentation page */
  .imgListePrestation {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: -1vh;
  }

  .totalContenu {
    margin-top: 5vh;
    margin-inline: 7% 7%;
    margin-bottom: 30vh;
  }

  h2 {
    color: #00ab84;
    font-size: 80%;
    margin-bottom: 2%;
  }

  /* Conteneur titre page */
  .lienPageListePrestation {
    margin-bottom: 0%;
    font-size: 200%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-inline: 1.8% 1.8%;
  }

  /* Lien sur le titre de la page */
  .lienPageListePrestation a {
    text-decoration: none;
    color: #00ab84;
  }

  .blockPrestations {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    margin-top: 10%;
  }

  .elementPrestation {
    padding: 2%;
    border: 2px solid white;
    border-bottom: 2px solid #00ab84;
    background-color: white;
    width: 100%;
    margin: 1.9%;
    transition: box-shadow 0.2s ease;
    margin-top: 5%;
    text-decoration: none;
    color: black;
  }

  .elementPrestation p {
    color: #000000;
  }

  .elementPrestation h3 {
    margin-bottom: 3%;
    color: #000000;
    font-size: 130%;
  }

  .elementPrestation:hover {
    border: 2px solid #00ab84;
    box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.3);
  }

  .elementPrestation:hover .listePresta {
    color: #00ab84;
  }

  .elementPrestation {
    opacity: 0;
    transform: translateY(100px);
  }

  .elementPrestation.visible {
    opacity: 1;
    transform: translateY(-10px);
    transition: opacity 0.7s ease, transform 1s ease;
  }

  .retourFleche {
    margin-top: 2vh;
    margin-left: 0.5vh;
    position: absolute;
  }

  .retourFleche img {
    width: 15%;
  }

  .space2 {
    height: 2vh;
  }
}

/* -------------------------------------------------------- */

/* ----------------- Barre de recherches  ----------------- */

.search-form {
  display: flex;
  align-items: center;
}

.search-input {
  padding: 8px;
  border: 1px solid #000000;
  border-radius: 4px;
}

.search-input:focus {
  outline: none;
  border-color: #00ab84;
  box-shadow: 0 0 5px #00ab84;
}

.search-button {
  cursor: pointer;
  border: none;
  background: fixed;
  padding: 8px;
  width: 25px;
  height: 25px;
}

/* -------------------------------------------------------- */

/* -------------------- Accueil - Notre Fiduciaire -------------------- */

@media (orientation: landscape) {

  /* Logo */
  .logoNotreFiduciaire {
    display: flex;
    justify-content: center;
    margin-top: -3%;
  }

  .logoNotreFiduciaire img {
    margin-top: 2%;
    width: 25%;
  }

  /*  */

  /* Texte logo */
  .textLogoAccueilNotreFidu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .textLogoAccueilNotreFidu h2 {
    color: #000;
    margin-top: -4%;
    font-size: 100%;
    margin-bottom: 5%;
  }

  /*  */

  /* Titre */
  .titreAccueilNotreFidu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .titreAccueilNotreFidu h2 {
    margin-bottom: 4%;
    font-size: 150%;
  }

  /*  */

  /* Texte */
  .BoxTexteAccueil {
    width: 55vw;
    margin-inline: 22%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: 100%;
  }

  .BoxTexteAccueil p {
    margin-bottom: 5%;
  }

  .BoxTexteAccueil h4 {
    color: #000;
    margin-top: -1%;
    margin-bottom: 2%;
  }

  .boxTextFiduciaire {
    width: 55vw;
    margin-inline: 22%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: 100%;
  }

  .boxTextFiduciaire p {
    margin-bottom: 3%;
    margin-left: 0%;
  }

  .boxTextFiduciaire ul {
    margin-bottom: 3%;
    margin-left: 4%;
  }

  /*  */
}

@media (orientation: portrait) {

  /* Logo */
  .logoNotreFiduciaire {
    display: flex;
    justify-content: center;
    margin-top: -3%;
  }

  .logoNotreFiduciaire img {
    margin-top: 2%;
    width: 40%;
  }

  /*  */

  /* Texte logo */
  .textLogoAccueilNotreFidu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .textLogoAccueilNotreFidu h2 {
    color: #000;
    margin-top: -1%;
    font-size: 3vw;
    margin-bottom: 6%;
  }

  /*  */

  /* Titre */
  .titreAccueilNotreFidu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .titreAccueilNotreFidu h2 {
    margin-bottom: 7%;
    font-size: 4.3vw;
  }

  /*  */

  /* Texte */
  .BoxTexteAccueil {
    width: 80vw;
    margin-inline: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: 100%;
  }

  .BoxTexteAccueil p {
    margin-bottom: 7%;
  }

  .BoxTexteAccueil h4 {
    color: #000;
    margin-top: -1%;
    margin-bottom: 2%;
  }

  .boxTextFiduciaire {
    width: 80vw;
    margin-inline: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: 100%;
  }

  .boxTextFiduciaire p {
    margin-bottom: 5%;
    margin-left: 0%;
  }

  .boxTextFiduciaire ul {
    margin-bottom: 5%;
    margin-left: 10%;
  }

  /*  */

}

/*  */

/* -------------------------------------------------------- */

/* --------------------- Contact ---------------------- */

@media (orientation: landscape) {

  /* Titre page contact */
  .titreContact {
    display: flex;
    justify-content: space-around;
    margin-top: 5vh;
    margin-bottom: 5vh;
    font-size: 250%;
  }

  /* Box total */
  .boxToutContact {
    margin-top: 2%;
    display: flex;
    justify-content: center;
    height: 10%;
  }

  .tousContact {
    display: flex;
    justify-content: center;
    width: 90%;
    margin-inline: 5%;
  }

  .tousContactJr {
    display: flex;
    flex-direction: row;
  }

  .tousContact .elemenContact {
    width: 20%;
  }

  /* Image Titre */
  .tousContact .thBox {
    width: 90%;
    border-bottom: 1px solid black;
    margin-bottom: 2%;
    padding-bottom: 1%;
  }

  .thBox img {
    width: 20%;
  }

  /* Element */
  .tousContact .td {
    width: 90%;
    color: #00ab84;
    font-size: 80%;
  }

  .tousContact a {
    text-decoration: none;
    color: #00ab84;
    margin-left: 0.5%;
  }

  .tousContact a:hover {
    text-decoration: underline;
  }

  /*  */

  .maps {
    margin-top: 5%;
    width: 90%;
    height: 60vh;
    border-style: none;
    margin-inline: 5%;
    box-shadow: 0 0 10px #000;
    transition: box-shadow 0.7s ease;
  }

  .maps:hover {
    box-shadow: 0 0 15px #000;
    transition: box-shadow 0.7s ease;
  }

  .boxRdvMail {
    display: flex;
    justify-content: space-around;
  }

  .prendreRDV {
    text-align: center;
    width: 20%;
    margin-inline: 5%;
    margin-top: 2%;
    margin-bottom: 2%;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #00644c;
    padding: 1.7%;
    border: 1px solid #00644c;
    box-shadow: 0 0 10px #000;
    font-size: 120%;
    transition: font-size 0.7s ease;
  }

  .prendreRDV:hover {
    font-size: 130%;
    transition: font-size 0.7s ease;
  }
}

@media (orientation: portrait) {

  /* Titre page contact */
  .titreContact {
    display: flex;
    justify-content: space-around;
    margin-top: 5vh;
    margin-bottom: 5vh;
    font-size: 150%;
  }

  /* Box total */
  .boxToutContact {
    margin-top: 2%;
    display: flex;
    justify-content: center;
    /* height: 50%; */
  }

  .tousContact {
    display: flex;
    justify-content: center;
    width: 92%;
  }

  .tousContact .elemenContact {
    width: 50%;
  }

  /* Image Titre */
  .tousContact .thBox {
    width: 10%;
    border-bottom: 1px solid black;
    margin-bottom: 2%;
    padding-bottom: 1%;
  }

  .thBox img {
    width: 20%;
    margin-top: 10%;
  }

  /* Element */
  .tousContact .td {
    width: 90%;
    color: #00ab84;
    font-size: 80%;
  }

  .tousContact a {
    text-decoration: none;
    color: #00ab84;
    margin-left: 0.5%;
  }

  .tousContact a:hover {
    text-decoration: underline;
  }

  /* Box total */
  .boxToutContact {
    margin-top: 2%;
    display: flex;
    justify-content: center;
    height: 10%;
  }

  .tousContact {
    display: flex;
    justify-content: center;
    width: 92%;
  }

  .tousContact .elemenContact {
    width: 20%;
  }

  /* Image Titre */
  .tousContact .thBox {
    width: 90%;
    border-bottom: 1px solid black;
    margin-bottom: 2%;
    padding-bottom: 1%;
  }

  .thBox img {
    width: 20%;
  }

  /* Element */
  .tousContact .td {
    width: 90%;
    color: #00ab84;
    font-size: 80%;
  }

  .tousContact a {
    text-decoration: none;
    color: #00ab84;
    margin-left: 0.5%;
  }

  .tousContact a:hover {
    text-decoration: underline;
  }

  /* 
  .tousContact {
    margin-top: 2%;
    display: flex;
    justify-content: center;
    width: auto;
    padding: 10%;
  }

  .tousContact .table {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .tousContact .tr {
    display: flex;
    flex-direction: row;
  }

  .tousContact .th {
    width: 100%;
    height: 150px;
  }

  .tousContact .thBox {
    width: 75%;
    padding-bottom: 0.9%;
    border-bottom: 1px solid black;
    margin-bottom: 1%;
  }

  .tousContact .th .thBox img {
    width: 25%;
  }

  .tousContact .td {
    width: 25%;
    color: #00ab84;
    font-size: 40%;
    padding: 1%;
  }

  .tousContact .td p {
    margin-left: 0.5%;
  }

  .tousContact a {
    text-decoration: none;
    color: #00ab84;
    margin-left: 0.5%;
  }

  .tousContact a:hover {
    text-decoration: underline;
  } */

  /*  */

  .maps {
    margin-top: 5%;
    width: 90%;
    height: 60vh;
    border-style: none;
    margin-inline: 5%;
    box-shadow: 0 0 5px #000;
  }

  .maps:hover {
    box-shadow: 0 0 10px #000;
  }

  .prendreRDV {
    display: flex;
    justify-content: center;
    margin-inline: 5%;
    margin-top: 3%;
    margin-bottom: 3%;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #00644c;
    padding: 2%;
    border: 1px solid #00644c;
    box-shadow: 0 0 10px #000;
    font-size: 100%;
    transition: font-size 0.7s ease;
  }

  .prendreRDV:hover {
    font-size: 120%;
    transition: font-size 0.7s ease;
  }
}
#captcha-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #333;
  border-radius: 10px;
  margin-top: 10px;
  transition: transform 0.5s ease;
}



/* -------------------------------------------------------- */

/* ----------------- Affichage Prestation ----------------- */

@media (orientation: landscape) {
  .boxAffPresta {
    margin-top: 15vh;
    margin-inline: 10%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .affichagePrestationSimpleHaut {
    border: 1px solid #00ab84;
    border-radius: 5px;
    width: 60vw;
    border-top-left-radius: 0px;
    box-shadow: 6px 7px 15px #000;
  }

  .affichagePrestationSimpleBas {
    margin-top: 2%;
    border: 1px solid #00ab84;
    border-radius: 5px;
    width: 60vw;
    box-shadow: 6px 7px 20px #000;
  }

  .nomPresta {
    display: inline-block;
    font-size: 230%;
    color: #fff;
    background-color: #00ab84;
    padding: 1%;
    padding-right: 1.5%;
    padding-bottom: 1.5%;
    box-shadow: 6px 7px 15px #000;
    width: auto;
    max-width: 70%;
  }

  .contenuPrestation{
    padding: 4%;
    margin-bottom: 0.5%;
  }

  .enTetePresta { 
    margin-top: 2%;
    font-size: 120%;
    font-weight: bold;
    color: #000000;
    text-align: justify;
  }

  .textePresta {
    font-size: 100%;
    text-align: justify;
  }

  .decaleLi {
  list-style: none;
  position: relative;
  padding-left: 2em;
  }

  .decaleLi::before {
    content: '';
    position: absolute;
    left: 0.5em;
    top: 20%;
    width: 0.4em;
    height: 0.4em;
    border-radius: 50%;
    background-color: black;
    transform: translateY(-50%);
  }

  .decaleLi b {
    display: inline-block;
  }

  .decaleLi p {
    margin: 0;
    padding-left: 0;
    text-indent: 0;
  }

  .boxBtnDevis {
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
    margin-left: 1%;
    margin-right: 5%;
    width: 60vw;
  }

  .btnDevis {
    padding: 10%;
    display: inline-block;
    background-color: #00ab84;
    color: #fff;
    border: 1px solid #00ab84;
    border-radius: 5px;
    font-size: 100%;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 6px 7px 20px #000000a3;
  }

  .btnDevis:hover {
    box-shadow: 0px 0px 10px #00ab84;
    transition: box-shadow 0.3s ease;
  }

  .space {
    margin: 10%;
  }
}

@media (orientation: portrait) {
  .boxAffPresta {
    margin-top: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .affichagePrestationSimpleHaut {
    border: 1px solid #00ab84;
    border-radius: 5px;
    width: 80vw;
    border-top-left-radius: 0px;
  }

  .affichagePrestationSimpleBas {
    margin-top: 2%;
    border: 1px solid #00ab84;
    border-radius: 5px;
    width: 80vw;
  }

  .nomPresta {
    font-size: 150%;
    color: #fff;
    background-color: #00ab84;
    padding: 1%;
    padding-bottom: 1.5%;
    box-shadow: 6px 7px 15px #000;
    width: 90%;
  }

  .contenuPrestation{
    padding: 4%;
    margin-bottom: 0.5%;
  }

  .enTetePresta {
    margin-top: 5%;
    font-size: 110%;
    font-weight: bold;
    color: #000;
  }

  .textePresta {
    font-size: 100%;
  }
  
  .decaleLi {
  list-style: none;
  position: relative;
  padding-left: 2em;
  }

  .decaleLi::before {
    content: '';
    position: absolute;
    left: 0.5em;
    top: 20%;
    width: 0.4em;
    height: 0.4em;
    border-radius: 50%;
    background-color: black;
    transform: translateY(-50%);
  }

  .decaleLi b {
    display: inline-block;
  }

  .decaleLi p {
    margin: 0;
    padding-left: 0;
    text-indent: 0;
  }

  .btnDevis {
    margin-top: 7%;
    display: inline-block;
    background-color: #00ab84;
    color: #fff;
    border: 1px solid #00ab84;
    border-radius: 5px;
    font-size: 100%;
    cursor: pointer;
    text-decoration: none;
    padding: 5%;
    width: 60vw;
  }

  .btnDevis:hover {
    box-shadow: 0px 0px 10px #00ab84;
    transition: box-shadow 0.3s ease;
  }

  .space {
    margin: 30%;
  }
}

/* -------------------------------------------------------- */

/* ----------------------- Demandes ----------------------- */

@media (orientation: landscape) {

  /* styles.css */
  .boxDemande {
    background-color: #f5f5f5;
    padding: 2%;
    width: 60vw;
    margin: 0% auto;
    margin-top: 8vh;
    box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.3);
  }

  .nomDemande {
    color: #00ab84;
    font-size: 180%;
    margin-bottom: 2%;
  }

  .labelDemande {
    color: #000000;
    display: block;
    margin-bottom: 1%;
  }

  .inputDemande {
    display: block;
    width: 100%;
    padding: 2%;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 4px;
    font-size: 100%;
    margin-bottom: 1.5%;
    transition: background-color 0.3s ease;
  }

  .inputDemande:focus {
    outline: none;
    border-color: #00ab84;
    box-shadow: 0 0 5px #00ab84;
  }

  .inputDemande[type="submit"] {
    background-color: #00ab84;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .inputDemande[type="submit"]:hover {
    background-color: #00644c;
    transition: background-color 0.3s ease;
  }
}

@media (orientation: portrait) {

  /* styles.css */
  .boxDemande {
    background-color: #f5f5f5;
    padding: 2%;
    width: 90vw;
    margin: 0% auto;
    margin-top: 8vh;
    box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.3);
  }

  .nomDemande {
    color: #00ab84;
    font-size: 120%;
    margin-bottom: 2%;
  }

  .labelDemande {
    color: #000000;
    display: block;
    margin-bottom: 1%;
  }

  .inputDemande {
    display: block;
    width: 100%;
    padding: 2%;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 4px;
    font-size: 100%;
    margin-bottom: 1.5%;
    transition: background-color 0.3s ease;
  }

  .inputDemande:focus {
    outline: none;
    border-color: #00ab84;
    box-shadow: 0 0 5px #00ab84;
  }

  .inputDemande[type="submit"] {
    background-color: #00ab84;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .inputDemande[type="submit"]:hover {
    background-color: #00644c;
    transition: background-color 0.3s ease;
  }
}

/* -------------------------------------------------------- */

/* ------------------------ Footer ------------------------ */

@media (orientation: landscape) {

  /* Box */
  footer {
    background: linear-gradient(to top, #00ab84, transparent);
    padding: 1%;
    bottom: 0;
    margin-top: 5%;
    padding-top: 5%;
  }

  .boxFooter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  /*  */

  /* Image */
  .imgFooter {
    display: flex;
    justify-content: center;
  }

  .imgFooter img {
    width: 30%;
    height: 100%;
  }

  /*  */

  /* Left Footer */
  .leftFooter {
    margin-left: 5%;
    width: 35%;
    height: 100%;
  }

  /*  */

  /* Right Footer */
  .rightFooter {
    margin-right: 5%;
    width: 35%;
    height: 100%;
  }

  /*  */

  /* Column */

  .column {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .column p {
    font-size: 90%;
    margin-top: 0.5%;
  }

  .rightFooter .column a {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .column a {
    font-size: 90%;
    text-decoration: none;
    color: #000;
    margin-top: 0.5%;
  }

  .column a:hover {
    text-decoration: underline;
  }

  .column:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
    margin-top: 3%;
  }

  /*  */

  /* Credit */
  .credit1 {
    margin-top: 0.5%;
    font-size: 65%;
    padding-left: 1%;
    color: #000;
  }

  .credit2 {
    float: right;
    margin-top: 0.5%;
    font-size: 65%;
    padding-right: 1%;
    color: #000;
  }

  .credit1 a {
    text-decoration: none;
    color: #000;
  }

  .credit1 a:hover {
    text-decoration: underline
  }

}

@media (orientation: portrait) {

  /* Box */
  footer {
    background: linear-gradient(to top, #00ab84, transparent);
    padding: 5%;
    bottom: 0;
    width: 100%;
    margin-top: 20%;
    padding-top: 30%;
  }

  .boxFooter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  /*  */

  /* Image */
  .imgFooter {
    display: flex;
    justify-content: center;
    margin-inline: 1%;
  }

  .imgFooter img {
    width: 22vw;
    height: 100%;
  }

  /*  */

  /* Left Footer */
  .leftFooter {
    margin-left: 2%;
    width: 40vw;
    height: 100%;
  }

  /*  */

  /* Right Footer */
  .rightFooter {
    margin-right: 2%;
    width: 40vw;
    height: 100%;
  }

  /*  */

  /* Column */
  .column {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .rightFooter .column {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }

  .column p {
    font-size: 80%;
    margin-top: 0.5%;
  }

  .rightFooter .column a {
    display: flex;
    justify-content: center;
  }

  .column a {
    font-size: 70%;
    text-decoration: none;
    color: #000;
    margin-top: 0.5%;
  }

  .column a:hover {
    text-decoration: underline;
  }

  .column:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
    margin-top: 3%;
  }

  /*  */

  /* Credit */
  .credit1 {
    margin-top: 0.5%;
    font-size: 60%;
    padding-left: 1%;
    color: #000;
  }


  .credit2 {
    float: right;
    margin-top: 0.5%;
    font-size: 60%;
    padding-right: 1%;
    color: #000;
  }

  .credit1 a {
    text-decoration: none;
    color: #000;
  }

  .credit1 a:hover {
    text-decoration: underline
  }

}

/*  */

/* -------------------------------------------------------- */

/* ---------------------------- Maintenance ---------------------------- */

.maintenance {
  text-align: center;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logoMaintenance {
  width: 500px;
  height: auto;
  margin-top: 50px;
}

.texteMaintenance {
  color: #000000;
  margin-top: 30px;
}

.aMaintenance {
  font-size: 20px;
  margin-bottom: 20px;
  color: #00ab84;
}


/* CAPTCHA */

.captcha-container{
  display: flex;
  flex-direction: row;
  margin: 2%;
}

.captcha-image{
  width: 1px;
}

.captcha-container .rotate-btn{
  margin: 2%;
  height: 1%;
}