/**************************************************** PAGE ACCUEIL *******************************************************/
/*SLIDER*/
* {
    box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

/**************************************************** PAGE CATALOGUE *******************************************************/

/*----------------- HEADER ----------------------*/
body {
    font-family: 'Oswald', sans-serif;
}

#logo_entreprise {
    display: inline-block;
    height: auto;
    width: 7%;
}

#logo {
    width: 100%;
    height: auto;
    border-radius: 50%;

}

#menu_principal {

    width: 100%;
    background-color: coral;
    height: auto;
    vertical-align: top;
    margin-bottom: 20px;
}

#main-nav {
    display: inline-block;
    width: 89%;
    height: auto;
    vertical-align: top;
}

#main-nav ul li {
    display: inline-block;
    text-decoration: none;
    font-size: 40px;
    font-weight: bold;
    color: white;
    height: auto;
    width: 33%;
    margin-top: 20px;
    margin-bottom: auto;
    text-shadow: 2px 2px #888888;
}

#main-nav ul li#milieu {
    border-right: 1px solid white;
    border-left: 1px solid white;
}

#main-nav ul li a {
    color: white;
    text-decoration: none;
    vertical-align: middle;

}

#main-nav ul {
    text-align: center;
    padding-left: 0;
}

#banniere {
    width: 100%;
    height: auto;
}

/*----------------- MAIN ----------------------*/

main {
    padding-top: 10px;
    background-color: navajowhite;
}

.container {
    margin-left: 10%;
    margin-right: 10%;
    /* padding: 50px 0px;*/
}

.container .divCatalogue {
    display: inline-block;
    width: 31%;
    margin-right: 2%;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10%;
    border: solid gray 0.5px;
    box-shadow: 6px 12px 12px #888888;
    background-color: coral;
    vertical-align: top;
}

.container h2 {
    font-size: 25px;
    color: white;
    border-top: 1px dashed white;
    width: 80%;
    margin: 5% auto;
    padding-top: 5%;
    text-shadow: 2px 2px #888888;
}

.divCatalogue p {
    margin: 0 auto;
    color: white;
    font-size: 20px;
}

.titres_objets {
    color: white;
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
    text-shadow: 2px 2px #888888;
}

.divImg {
    width: 70%;
    height: auto;
    display: inline-block;
    position: relative;
}

.image {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: .5s ease;
    backface-visibility: hidden;
    border-radius: 5%;
    box-shadow: 3px 6px 6px #888888;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.divImg:hover .image {
    opacity: 0.3;
}

.divImg:hover .middle {
    opacity: 1;
}

.text {
    background-color: #b7a985;
    color: white;
    font-size: 16px;
    padding: 16px 12px;
    text-transform: uppercase;
    font-weight: bold;
    width: auto;
    position: inherit;

}

/* TABS */
#tabs ul {
    overflow: hidden;
    background-color: ghostwhite;
    text-decoration: none;
    padding-left: 0;
    list-style-type: none;
    box-shadow: 3px 6px 6px #888888;
    width: 98%;

}

#tabs ul li {
    background-color: inherit;
    float: left;
    outline: none;
    cursor: pointer;
    padding: 10px 10px;
    transition: 0.3s;
    font-size: 15px;
    width: 20%;
    height: 60px;
    text-align: center;
    border: 1px solid white;
}

#tabs ul li a {
    text-decoration: none;
    font-weight: bold;
    color: darkslategrey;
    text-shadow: 1px 1px #888888;
    text-transform: uppercase;
    font-size: 15px;
}

#tabs ul li:hover {
    background-color: #ddd;

}

#tabs ul li.active {
    background-color: #a59797;
}

#tabs ul li a:hover, #tabs ul li a.active {
    color: lightslategray;
}

/************************ FOOTER ***************************/
footer {
    margin: 0 auto;
    width: 100%;
    height: auto;
    color: #fff;
    background-color: coral;
}

#foot-bande-1 {
    margin: 0 auto;
    width: 100%;
}

#foot-bande-1 ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    border-bottom: 1px dashed white;
    text-shadow: 2px 2px #888888;
}

#foot-bande-1 ul li {
    display: inline-block;
    width: 24%;
    height: 60px;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 3%;
    font-size: 25px;
    font-weight: bold;
}

#foot-bande-2 {
    margin: 0 auto;
    width: 100%;
}

#foot-bande-2 ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

footer section div {
    display: inline-block;
    margin: 0 4px 0;
    width: 24%;
    min-width: 250px;
    vertical-align: top;
}

#mentions-legales, #footer-menu {
    float: left;
    width: 100%;
}

#mentions-legales ul li, #footer-menu ul li {
    margin: 0 0 10px;
}

#mentions-legales a, #footer-menu a {
    color: white;
    text-decoration: none;
}

footer section div h3 {
    font-size: 20px;
    text-shadow: 2px 2px #888888;
}

#nav-reseaux ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

#nav-reseaux ul li {
    margin: 0;
    display: inline;
}

#suivez-nous, #adresse, #footer-menu, #mentions-legales, h3 {
    text-align: center;
}

.icone {
    width: 30px;
    height: 30px;
}

small {
    text-align: center;
    display: block;
    font-size: 15px;
}

/**************************************************** PAGE RESERVATION *******************************************************/

#nom.valide + p, #prenom.valide + p, #couriel.valide + p, #adresseClient.valide + p, #nbPersonnes.valide + p {
    display: none;
}

#nom.invalide + p, #prenom.invalide + p, #couriel.invalide + p, #adresseClient.invalide + p, #nbPersonnes.invalide + p {
    display: block;
}

#nom + p, #prenom + p, #couriel + p, #adresseClient + p, #nbPersonnes + p, #telephone + p, #date + p  {
    display: none;
}

/*message erreur*/

.container2{
    margin-left: 10%;
    margin-right: 10%;
}

.alert-box {
    color: #555;
    border-radius: 10px;
    padding: 10px 10px 10px 36px;
    margin: 10px;
}

.alert-box span {
    font-weight: bold;
    text-transform: uppercase;
}

.error {
    background: #ffecec url("images/error.jpeg") 10px 50% no-repeat;
    border: 1px solid #f5aca6;
    font-size: 15px;
    width: 40%;
    margin: 20px auto;
}

/*FORM*/
#divImgReservation {
    text-align: center;
}

.imageReservation {
    width: 30%;
    margin-right: 1%;
    display: inline-block;
}

form#validation {
    width: 60%;
    text-align: left;
    margin: 30px;
    background-color: #fff;
    box-shadow: 3px 6px 6px #888888;
    color: #fff;
    display: inline-block;
    border-radius: 10px;
    font-size: 20px;
    padding: 20px;
}

form#validation input {
    display: block;
    width: 60%;
    height: 40px;
    margin: 20px auto;
    font-size: 20px;
}

form legend {
    color: #000;
    font-size: 25px;
    padding: 30px;
}

form label {
    color: black;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    width: 100%;
    margin: auto;

}

fieldset {
    margin: 20px auto;
    padding: 30px;
    border: none;
    background-color: beige;
    box-shadow: 3px 6px 6px #888888;
    border-radius: 10px;
}

form #bouton-valider, form #bouton-cancel {
    background-color: #438fca;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px;
    font-size: 20px;
    width: auto;
    box-shadow: 3px 6px 6px #888888;
    display: block;
    margin: auto;
}

h6 {
    font-size: 40px;
    font-weight: bold;
    text-shadow: 2px 2px #888888;
    margin-bottom: 30px;
    padding: 10px 30px 30px 30px;
}

#message-fin{
    position: absolute;


}