body{
  background: rgb(255,255,255);
  background: linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(148,189,198,0.09986001236432074) 50%, rgba(148,189,198,0.11666673505339631) 100%);  
}

h2{
  margin-bottom: 5%;
}
section{
    padding: 2% 0;
}

nav{
  -webkit-box-shadow: -1px 4px 15px 0px rgba(224,224,224,1);
-moz-box-shadow: -1px 4px 15px 0px rgba(224,224,224,1);
box-shadow: -1px 4px 15px 0px rgba(224,224,224,1);
}
.navbar-nav .nav-link:hover{
  /* background-color: rgba(76, 211, 211, 0.2); */
  background-color: #EAEDEF;
}
.navbar-nav .nav-link.active{
  /* background-color: rgb(76, 211, 211); */
  background-color: rgb(134,187,203);
}

.btn-violet{
  background-color: #c48ae6;
  border: #c26aeb;
}
.btn-violet:hover{
  background-color: #c26aeb;
  border: #c48ae6;
}


div.featurette > div.col-md-7{
  display: flex;
  justify-content: center;
  align-items: center;
}

.bodyIndex h2{
  color: rgb(0, 14, 99);
  font-weight: 800;
}
 
/* ################################################################### */
/* ################################################################### */
/* ################################################################### */
 /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
 /* .flip-card {
    background-color: transparent;
    width: 300px;
    height: 200px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; Remove this if you don't want the 3D effect
  } */
  
  /* This container is needed to position the front and back side */
  /* .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  } */
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  /* .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  } */
  
  /* Position the front and back side */
  /* .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; Safari
    backface-visibility: hidden;
  } */

  /* .flip-card-back {
    width: 100%;
    height: 100%;
  } */
  
  /* Style the front side (fallback if image is missing) */
  /* .flip-card-front {
    background-color: #bbb;
    color: black;
  }
   */
  /* Style the back side */
  /* .flip-card-back {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
  } */
  .flip-card {
    background-color: transparent;
    width: 300px;
    height: 400px;
    perspective: 1000px;
    margin: 0 auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flip-card-front {
    background-color: white;
    color: #333;
}

.flip-card-back {
    /* background-color: #007bff;
    color: white; */
    background-color: #86BBCB;
    color: white;
    transform: rotateY(180deg);
}

.flip-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.flip-card p {
    font-size: 16px;
    padding: 0 20px;
}
  /* ################################################################### */
/* ################################################################### */
/* ################################################################### */


  /* Espacer les li de la nav en desktop */
/* LA PAGE COMMANDER */
#map { height: 400px; margin-top: 20px; }
#resultat { font-weight: bold; margin-top: 10px; }
.disabled { background: gray; cursor: not-allowed; }

#commandeForm{
  width: 75%;
  margin: 0 auto;
}


/* ############################### */
/*          MEDIA QUERIES          */
/* ############################### */

@media only screen and (min-width: 992px) {
  .navbar-nav{
    flex-grow: .2;
  }
  .nav-item {
    margin-right: 2%;
  }
}