/* style en commun pour toutes les pages */
* {
  box-sizing: border-box;
  font-family:'Quicksand', sans-serif;
  margin:0;
  padding: 0;
}

/* image de fond */
html {
  background: url(Images/parimis-fond.jpg) no-repeat center fixed;
  -webkit-background-size: cover;
  background-size: cover;
  scroll-behavior: smooth;
}

strong {
  font-weight: 400;
}

/* Compatibilité de la prorieté flex sur l'ensemble des navigateurs */
.flex {
	display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
}


/* Styles pour l'accueil
██╗  ██╗███████╗ █████╗ ██████╗ ███████╗██████╗
██║  ██║██╔════╝██╔══██╗██╔══██╗██╔════╝██╔══██╗
███████║█████╗  ███████║██║  ██║█████╗  ██████╔╝
██╔══██║██╔══╝  ██╔══██║██║  ██║██╔══╝  ██╔══██╗
██║  ██║███████╗██║  ██║██████╔╝███████╗██║  ██║
╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ ╚══════╝╚═╝  ╚═╝
*/

header {
  display: block;
  margin: 0 auto;
	max-width: 960px;
	position: relative;
  z-index: 1;
}
.fond{
  width:960px;
  color:rgba(250,250,255,0.2);
}
/* Bannière logo */
.banniere {
  width:100%;
  display: block;
  z-index: 1
}

/* Style drapeau + formulaire et panier */
.reservation {
  color:#cfffd7;
}

.container1 {
  display:flex;
  justify-content:space-between;
  background:rgba(250,250,255,0.2);
  line-height:2em;
  padding: 0.5em;
  width:100%;
  box-shadow: 0px 5px 15px grey;
  position:relative;
  text-align: center;
}

form {
  display: inline-block;
}

.recherche {
  border-radius: 10px;
  line-height: 2em;
}

.panier {
  height:20px;
}

.drapeau {
  height:10px;
  display: inline-block;
  margin-left: 5px;
}


/* Bannière logo */
.banniere {
  width:100%;
  display: block;
}

/* Style pour la navigation */

nav {
  width: 100%;
  background: rgba(10,10,10,0.6);
}
nav > ul {
  margin: 0px;
  padding: 0px;
}
nav li {
  list-style-type: none;
}
nav > ul >li {
  float: left;
  position: relative;
}
nav > ul::after{
  content: "";
  display: table;
  clear: both;
}

.sousmenu {
  display: none;
}

nav input[type=checkbox]{
  display: none;
}

nav label {
  display: none;
}

nav a {
  display: inline-block;
  text-decoration: none;
}

nav > ul > li > a {
  padding: 20px 30px;
  color: white;
}

nav li:hover .sousmenu {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0px;
  padding: 0px;
  Z-index:1000;
  background-color: rgba(255,255,255,0.8)
}
.sousmenu li a {
  padding: 15px 30px;
  font-size: 16px;
  color: grey;
  width: 270px;
}

.rubrique .sousmenu li:hover{
  color: rgba(10,10,10,0.6);
  font-weight: 700;
}

nav input[type=checkbox]:checked ~ ul {
  display: block;
}

/* Style Diaporama */
#diaporama {
  margin: 0 auto;
  overflow:hidden;
  position: relative;
  width: 100%;
}

#diaporama img {
  position: absolute;
  width: 100%;
}

#diaporama img:not(:first-of-type) {
  display: none;
}


/* Styles pour le main
███╗   ███╗ █████╗ ██╗███╗   ██╗
████╗ ████║██╔══██╗██║████╗  ██║
██╔████╔██║███████║██║██╔██╗ ██║
██║╚██╔╝██║██╔══██║██║██║╚██╗██║
██║ ╚═╝ ██║██║  ██║██║██║ ╚████║
╚═╝     ╚═╝╚═╝  ╚═╝╚═╝╚═╝  ╚═══╝
*/

main {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

h1 {
  text-transform : uppercase;
  font-size: 3em;
  font-weight: 400;
  color: #626262;
  padding-top: 1em;
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 2em;
  font-weight: 400;
  color: #626262;
  padding-bottom: 1em;
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h3 {
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 400;
  color: #626262;
  text-align: left;
  padding-bottom: 0.3em;
  margin-left: auto;
  margin-right: auto;
}

h4 {
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
  color: #626262;
  text-align: center;
  padding-top: 0.6em;
  padding-bottom: 0.3em;
  margin-left: auto;
  margin-right: auto;
}

h5 {
  font-size: 1.3em;
  font-weight: 700;
  color: #626262;
  text-align: center;
  padding-top: 0.6em;
  padding-bottom: 0.3em;
  margin-left: auto;
  margin-right: auto;
}

h6 {
  font-size: 1.2em;
  font-weight: 400;
  color: #626262;
  text-align: left;
  padding-top: 0.6em;
  padding-bottom: 0.3em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5em;
}

.textecourant {
  text-align: left;
}

.textecentre{
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
}

.textecentre a{
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  color: black;
}

.textecourant a {
  text-align: left;
  text-decoration: none;
  color: black;
}

.bold {
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: #8aa690;
}

.rgpd {
  font-size: 1.3em;
  font-weight: 700;
  color: #626262;
  text-align: left;
  margin-top: 0.6em;
  margin-bottom: 0.3em;
  margin-left: auto;
  margin-right: auto;
}

.list{
  padding-left: 1.2em;
}

/* Style container bloc + image */
.container {
	overflow:hidden;
  display:flex;
  flex-wrap: wrap;
  margin-left:auto;
  margin-right:auto;
	justify-content:center;
  align-items: stretch;
  align-content: stretch;
}

.num1, .num2, .num3, .num4, .num5, .num6 {
  text-align:center;
  padding: 2em;
}

.num7 {
  margin left: 1em;
  margin right: 1em;
  margin top: 1em;
  margin bottom: 1em;
  padding: 2em;
}

.num8 {
  width: 66%;
}

.imgbloc {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}

.savoir {
  border-radius: 15px;
  background: rgba(161, 209, 173, 0.8);
  width:60%;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
  padding:0.3em;
  box-shadow: 0 5px 15px #c7c2c1;
  color: white;
}

.savoir2 {
  border-radius: 15px;
  background: rgba(161, 209, 173, 0.8);
  text-align: center;
  width: 60%;
  padding:0.7em;
  box-shadow: 0 5px 15px #c7c2c1;
  color: white;
  margin-bottom: 3em;
}

.print{
  border-radius: 15px;
  background: rgba(161, 209, 173, 0.8);
  text-align: center;
  width: 60%;
  padding:0.7em;
  box-shadow: 0 5px 15px #c7c2c1;
  color: white;
  margin-bottom: 3em;
  margin-top:2em;
  margin-bottom: 2em;
}

#print {
  text-align: center;
  margin:auto;
  margin-top: 2em;
}

.savoir2, a {
  color: white;
}

.savoir, a {
  text-decoration: none;
  color: white;
}

.adresse a {
  text-decoration: none;
  color: black;
}

.noustrouver{
  text-align: center;
}

.logoparimis {
  height:100px;
  margin: auto;
  text-align: center;
}

.adresse {
  margin-bottom: 2em;
  text-align: center;
}

.inscris {
  margin-bottom: 0.2em;
  text-align: center;
}

/* GOOGLE MAP */
.map {
   width: 100%;
   min-height: 300px;
   border: 0;
}

.fondnewsletter {
  width: 50%;
  height: 8em;
  background-color: rgba(161, 209, 173, 0.7);
  border-radius: 10px;
  box-shadow: 0 5px 15px #c7c2c1;
  text-align: center;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 3em;
}

.imagenews {
  height: 5em;
  margin-top: 0.1em;
  margin-left: 5em;
  position:absolute;
}

.hotel {
  padding-left: 2em;
  padding-right: 2em;
}

.textehotel {
  text-align: center;
  font-style: italic;
  color : grey;
  font-size: 1.2em;
  font-weight: 400;
}
.video {
  width: 100%
}

/*Styles pour les pages formulaires
███████╗ ██████╗ ██████╗ ███╗   ███╗██╗   ██╗██╗      █████╗ ██╗██████╗ ███████╗███████╗
██╔════╝██╔═══██╗██╔══██╗████╗ ████║██║   ██║██║     ██╔══██╗██║██╔══██╗██╔════╝██╔════╝
█████╗  ██║   ██║██████╔╝██╔████╔██║██║   ██║██║     ███████║██║██████╔╝█████╗  ███████╗
██╔══╝  ██║   ██║██╔══██╗██║╚██╔╝██║██║   ██║██║     ██╔══██║██║██╔══██╗██╔══╝  ╚════██║
██║     ╚██████╔╝██║  ██║██║ ╚═╝ ██║╚██████╔╝███████╗██║  ██║██║██║  ██║███████╗███████║
╚═╝      ╚═════╝ ╚═╝  ╚═╝╚═╝     ╚═╝ ╚═════╝ ╚══════╝╚═╝  ╚═╝╚═╝╚═╝  ╚═╝╚══════╝╚══════╝
*/

/* Formulaire Contact*/
.conteneur-form-contact {
  text-align: center;
}

.conteneur-form-contact form {
  margin-top: 35px;
  padding: 30px;
  background-color: rgba(161, 209, 173, 0.5);
  border: 1px solid #c7c2c1;
  border-radius: 5px;
}

.conteneur-form-contact form input, .conteneur-form-contact form textarea, .conteneur-form-contact form select {
  border: 1px solid #c7c2c1;
  margin-bottom: 10px;
}

.conteneur-form-contact form label {
  font-weight: 400;
  padding-top: 12px;
  padding-bottom: 5px;
  color: black;
  display: inline-block;
}

.conteneur-form-contact form input[type="text"] {
  width: 100%;
  height: 30px;
}

.conteneur-form-contact form textarea {
  width: 100%;
  height: 200px;
  vertical-align: top;
  resize: both;
}

.conteneur-form-contact form button {
  height: 25px;
  padding: 0 8px;
  background-color: rgba(161, 209, 173, 0.9);
  color: white;
  border-radius: 5px;
}

.bloc_adresse {
  padding-top: 50px;
  padding-bottom: 50px;
}

.list li, .numerotation li {
  text-decoration: none;
  font-size: 14px;
  text-align: justify;
  text-align-last: left;
  padding-left: 2em;
  padding-right: 2em;
  margin-left: 30px;
  padding-bottom: 10px;
  color: black;
}

.titrementions{
  text-transform: uppercase;
  font-weight: 700;
  color: grey;
  margin-top: 50px;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
}

.texte-mentions {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Réservation */

#formulaire-dispo {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

.fenetre {
  text-align: center;
}

#bandeau-reservation2 {
  width: 100%;
  background-color: rgba(50, 50, 50, 0.7);
  color: white;
  display: flex;
  display: -webkit-flex;
  margin-bottom: 14px;
}

.bandeau-reservation-item {
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 50px;
  text-align: center;
  flex: auto;
  justify-content: space-between;
}

#bandeau-reservation2 .bandeau-reservation-item {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dates_sejour {
  padding-right: 5px;
  padding-left: 21px;
  height : 25px;
  text-align: right;
  font-size: 14px;
  line-height: 1;
}

.fenetre {
  width: 100%;
  word-spacing: 1.5px;
}

fieldset {
  background : #efefef;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  padding-left: 40px;
  padding-right: 25px;
  padding-bottom: 50px;
  text-align: left;
  line-height: 1.5;
}

fieldset h3 {
  padding-bottom: 40px;
}

input[type="radio"] {
  margin: 3px 3px 0px 5px;
  box-sizing: border-box;
}

#bouton-voir-dispo button {
  line-height: 3em;
  margin:auto;
  padding: 0.5em;
  background-color: rgba(161, 209, 173, 0.9);
  font-size: 1em;
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  border-radius: 1.5em;
  margin-bottom: 3em;
}

.cgv {
  text-align: center;
}

/* Page HOTEL */
.conteneur1 {
  overflow:hidden;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.conteneur2 {
  overflow:hidden;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.boite1, .boite2, .boite3, .boite4 {
  padding: 2em;
  margin:auto;
  text-align:center;
}

.imgbox {
  width:100%;
}

.packphotos {
  width:100%;
}

/* Page Avis */
.avis a {
  color: black;
}

.avis  {
text-align: center;}

.avis ul li {
  display: inline-block;
  width: 250px;
  background-color: rgba(50, 50, 50, 0.3);
  text-align: center;
  margin-bottom: 2em;
  line-height: 3em;
  border-radius: 1em;
}

/*Styles pour la page footer
███████╗ ██████╗  ██████╗ ████████╗███████╗██████╗
██╔════╝██╔═══██╗██╔═══██╗╚══██╔══╝██╔════╝██╔══██╗
█████╗  ██║   ██║██║   ██║   ██║   █████╗  ██████╔╝
██╔══╝  ██║   ██║██║   ██║   ██║   ██╔══╝  ██╔══██╗
██║     ╚██████╔╝╚██████╔╝   ██║   ███████╗██║  ██║
╚═╝      ╚═════╝  ╚═════╝    ╚═╝   ╚══════╝╚═╝  ╚═╝
*/


footer {
  display: block;
  margin: 0 auto;
	max-width: 960px;
}

#footer {
  background-color: rgba(10,10,10,0.2);
  width: 100%;
  text-align: center;
  padding: 2em;
  border-radius: 3em 3em 0 0;
  margin-top: 3em;
}

#footer a {
  color: black;
  text-decoration: none;
}

.blocrs {
  padding: 1.3em;
  text-align: center;
}

.rs {
height: 60px;
padding-top: 1em;
}

.suiveznous {
  text-align: center;
  font-size: 2em;
}

.copyright {
font-size: 0.8em;
}
