
BODY {
  background-image: url('/img/fond.png');
  background-position: top center;
  background-size: auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-size:14px;
  font-family: 'Inter', sans-serif;
  font-weight:300;
  margin:0px;
  padding:0px;

}
DIV {
  box-sizing:border-box;
}

H1 {
  font-size:1.5em;
}

H2 {
  font-size:1.2em;
}

#container {
  max-width:1070px;
  margin:auto;
  display:flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-top: 20px;
}




.nav-links a {
  position: relative;
  text-decoration: none;
  color:black;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: #18272F;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
  }

.nav-links a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}



#pack {
  width:400px;
}

.img_pack {
  width:300px;
  margin:20px 0px;
}

.img_pack IMG {
  width:100%;
}

.container_blocks { display:flex; justify-content: flex-start; margin:0px; padding:0px;}
.block_texte_seul {  box-sizing: content-box; padding:0px; line-height: 1.5em; width: 100%;}
.block_image_seul { box-sizing: content-box; padding:0px; }
.block_image_seul IMG { width:100%; }
.block_image_seul P { margin:0px; padding:0px; }
.block-3 {
  flex-direction:row;
}

.block-4 {
  flex-direction:row-reverse;
}

#footer {
  margin-top:25px;
  width:100%;
  background-color: #7DB17C;
  padding-top:20px;

}

#contenu_footer {
  display:flex;
  justify-content: space-between;
  max-width:1070px;
  margin:auto;
}

#legal_footer {
  margin-top:20px;
  text-align:center;
  font-size:0.8em;
   color:white;
   padding-bottom:25px;
}

#contenu {
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap; 
  margin-top:25px; 
}

#page {
  /*width:635px;*/
  margin-right:30px;
  margin-top:0px;
  padding:0px;
}

.btn_inscription {
  background-color:#885590;
  color:white;
  padding:12px 65px;
  font-size:24px;
  text-transform:uppercase;
  text-decoration: none;
  font-family: 'Inter';
  font-weight:200;
  border:0px;
  border-radius:5px;
  transition: all 0.2s ease-out;
  cursor:pointer;
}

.btn_inscription:hover {
  transform: scale(0.98);
  background-color: #7DB17C;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.pack {
  margin-top:55px;
  width:100%; 
  border:1px solid #f1f1f1; 
  border-radius:5px; 
  background:#fafafa; 
  padding:20px; 
  box-sizing:border-box;
}

.titre_pack {
  font-weight:600;
  margin-bottom:10px;
}

.texte_pack {
  line-height: 1.3em;
}

.dispo_pack {
  font-size: 0.9em;
  font-style: italic;
}

.prix_pack {
  font-size: 1.4em;
  font-weight:600;
  color:#885590;
  margin-top:10px;
}
.prix_plus {
  font-size:0.8em;
  font-weight:300;
}

.voirPack {
  display: block;
}

#voir_pack { 
  display: none;
}


.cont_btn_pack {
  margin-top:20px;
}

.btn_choix_pack {
  background-color: #7DB17C;
  padding:10px 20px;
  border:0px;
  border-radius: 7px;
  color:white;
  font-size:0.9em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-out;
  text-decoration: none;
}


.btn_choix_pack:hover {
  background-color:#885590;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

@media only screen and (max-width:640px) {

  .packs {
    display:none;
  }

  #voir_pack {
    padding-top:50px;
    display: flex;
  }

  .btn_voir_pack {
    background-color:#885590;
    color:white;
    width:90%;
    margin:auto;
    font-size:18px;
    text-transform:uppercase;
    font-family: 'Inter';
    font-weight:200;
    border:0px;
    border-radius:5px;
    transition: all 0.2s ease-out;
    cursor:pointer;
    padding:10px 0px;
  }

  .btn_voir_pack:hover {
    background-color:#7DB17C;
  }
  
  #contenu {
    flex-direction: column-reverse;
    margin-top:0px;
  }

  #pack {
    width:90%;
    margin:auto;
    transition: all 0.2s ease;
  }

  .voirPack {
    display: block;
    
  }

  #page {
    width:90%;
    margin:auto;
    margin-top:20px;
  }

  #logo_droite {
    display:none;
  }

  #contenu_footer {
    display: flex;
    justify-content: space-between;
    max-width: 1070px;
    margin: auto;
    width: 90%;
  }

}