/*Structure : Start*/
.fullsize-background {
    min-height: 100vh;
    width: 100%;
    background-image: url("../image/background/background_desktop.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
}

.tag {
    text-align: center;
    color: white;
    padding-right: 15px;
}

.desktop {display: block;}

.mobile {display: none;}

.index {background-color: #EEE6D8;}

.page {background-color: #EEE6D8;}

footer {background-color: #674701;}

footer .logo_social img {width: 5vw;}

footer .contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer .contact img {
    width: 3vw;
    height: auto;
    margin-left: 20px;
}

footer .contact p {
    line-height: 40px;
    font-size: 1.1rem;
    color: white;
}

.index footer .contact p {
    line-height: 35px;
    font-size: 1.1rem;
    color: white;
}

@media all and (max-width: 990px){

    .fullsize-background {
        min-height: 100vh;
        width: 100%;
        background-image: url("../image/background/background_mobile.jpg");
        background-position: center center;
        background-size: cover;
        position: relative;
    }
    
    footer .logo_social img {width: 10vw;}

    footer .contact {
        display: flex;
        flex-direction: column;
    }

    footer .contact img {
        width: 8vw;
        height: auto;
        margin-left: 0;
    }

    .desktop {display: none;}

    .mobile {
        display: block;
        font-size: 10px;
        font-weight: bold;
    }
}

/*Structure : End*/

/*Navbar : Start*/

.index .navbar .navbar-nav .nav-link {
    font-size: 1.5rem;
    color: white;
}

.index .navbar .navbar-nav .nav-link:hover {text-decoration: underline 2px solid #B67332;}
 
.index .navbar .navbar-nav .nav-link:focus {
    color: white;
    outline: 0;
}

.index #navbar-desktop {
    display: block;
    padding-top: 1rem;
}

.index #navbar-desktop img {
    display: flex; 
    margin: auto;
    width: 25vw;
    height: auto;
}

.index #navbar-mobile {display: none;}

/*index*/

/*page*/

.page .navbar .navbar-nav .nav-link {
    font-size: 1.5rem;
    color: black;
}

.page .navbar .navbar-nav .nav-link:hover {text-decoration: underline 2px solid #B67332;}
 
.page .navbar .navbar-nav .nav-link:focus {
    color: black;
    outline: 0;
}

.page #navbar-desktop {
    display: block;
    padding-top: 1rem;
}

.page #navbar-desktop img {
    display: flex; 
    margin: auto;
    width: 25vw;
    height: auto;
}

.page #navbar-mobile {display: none;}

@media all and (max-width: 990px){

    .index #navbar-desktop {display: none;}

    .index #navbar-mobile {display: block;}

    .index #navbar-mobile img {
        width: 65vw;
        height: auto;
    }

    .index .navbar {
        background-color: #674701;
        transition: all .6s;
        backface-visibility: hidden;
        box-shadow: 0 2px 5px 1px rgba(51, 51, 51, 0.5);
    }

    .index .navbar-nav {border-top: 2px solid #B67332;}

    .index .navbar .navbar-nav .nav-link {
        font-size: 1.5rem;
        color: white;
    }
     
    .index .navbar .navbar-nav .nav-link:hover {color: rgba(255, 255, 255, 0.8);}
     
    .index .navbar .navbar-nav .nav-link:focus {
        color: white;
        outline: 0;
    }
     
    .index .navbar .navbar-toggler {border: none;}
     
    .index .navbar .navbar-toggler span {
        display: block;
        width: 30px;
        height: 2px;
        margin: 6px auto;
        background: white;
        transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    }
    
    /* rotate first span */
    .index .navbar .navbar-toggler[aria-expanded="true"] span:first-of-type {
        transform: rotate(45deg) translate(6px, 6px);
    }
     
    /* hide second span */
    .index .navbar .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
        opacity: 0;
    }
     
    /* rotate third span */
    .index .navbar .navbar-toggler[aria-expanded="true"] span:last-of-type {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .page #navbar-desktop {display: none;}

    .page #navbar-mobile {display: block;}

    .page #navbar-mobile img {
        width: 65vw;
        height: auto;
    }

    .page .navbar {
        background-color: #674701;
        transition: all .6s;
        backface-visibility: hidden;
        box-shadow: 0 2px 5px 1px rgba(51, 51, 51, 0.5);
    }

    .page .navbar-nav {border-top: 2px solid #B67332;}

    .page .navbar .navbar-nav .nav-link {
        font-size: 1.5rem;
        color: white;
    }
     
    .page .navbar .navbar-nav .nav-link:hover {color: rgba(255, 255, 255, 0.8);}
     
    .page .navbar .navbar-nav .nav-link:focus {
        color: white;
        outline: 0;
    }
     
    .page .navbar .navbar-toggler {border: none;}
     
    .page .navbar .navbar-toggler span {
        display: block;
        width: 30px;
        height: 2px;
        margin: 6px auto;
        background: white;
        transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    }
    
    /* rotate first span */
    .page .navbar .navbar-toggler[aria-expanded="true"] span:first-of-type {
        transform: rotate(45deg) translate(6px, 6px);
    }
     
    /* hide second span */
    .page .navbar .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
        opacity: 0;
    }
     
    /* rotate third span */
    .page .navbar .navbar-toggler[aria-expanded="true"] span:last-of-type {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    main img {
        width: 100vw;
        height: auto;
        padding-top: 10px; 
     }
}

/*Navbar : End*/

/*Acceuil : Start*/

.index .down {width: 100%;}

.index .down img {
    width: 5vw;
    height: auto;
    display: flex;
    margin: auto;
}

.contenu {
    padding-right: 5vw;
    padding-left: 5vw;
}

.index img {
    width: 22vw;
    height: auto;
    padding-top: 10px;
}

.introduction {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 3px solid #B67332;
}

.introduction img {
    width: 3vw;
    height: auto;
}

.introduction h1 {
	margin: auto;
	font-size: 2rem;
}

.introduction h2 {
	margin: auto;
    font-size: 2rem;
    line-height: 5vw;
}

.description {
	width: 100%;
	display: flex;
	flex-direction: row;
}

.description img {
	width: 25vw;
}

.link_word {
	text-decoration: none;
	color: #B67332;
	font-weight: bold;
    text-decoration: underline 2px;
}

footer .link_word {color: white;}

.infos {
    padding-left: 20px;
    text-align: justify;
}

@media all and (max-width: 990px){
    
    .index .down img {width: 15vw;}

    .index img {
        width: 100vw;
        height: auto;
        padding-top: 10px; 
     }

     .description {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .description img {
        width: 50vw;
        display: flex;
        flex-direction: column;
        margin: auto;
    }

    .infos {padding-left: 0;}

    .infos h3 {
        text-align: center;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/*Accueil : End*/

/*Prestations : Start*/

.prestation {
	display: flex;
	flex-direction: row;
	align-items: center;
    justify-content: space-around;
}

.bloc a {
	width: 254px;
	height: 570px;
	display: flex;
	flex-direction: column;
	color: white;
	background-color: #B67332;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	border: 2px solid white;
	text-decoration: none ;
	padding-bottom: 10px;
}

.bloc a:hover {box-shadow:0 2px 10px 2px black;}

.bloc img {
	width: 250px; 
	height: 250px;
	object-fit: cover;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 47px;
	border: 4px solid white;
}

.text {
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.inline {
    display: flex;
	flex-direction: row;
    width: 100%;
	padding-top: 10px;
}

.inline img {
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 0;
    color: white;
}

.infos_prestation .inline p {
    line-height: 40px;
    font-size: 1.1rem;
    padding-left: 10px;
}

.infos_prestation {padding-top: 10px;}

.infos_prestation h3 {
	font-size: 1.4rem;
	text-align: center;
}

.infos_prestation p {
	font-size: 0.9rem;
	text-align: center;
}

@media all and (max-width: 990px){

    .prestation {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .bloc img {
    padding-top : 0;
    }
}

/*Prestations : End*/

/*Description : Start*/

@media all and (max-width: 990px){

    .infos h1 {text-align: center}
}

/*Description : End*/

/*Disponibilities : Start*/

.map {
    width: 35vw;
    height: auto;
    display: flex;
    margin: auto;
}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.contact img {
    width: 3vw;
    height: auto;
}

.contact p {
    line-height: 40px;
    font-size: 1.1rem;
    padding-left: 10px;
}

iframe {background-color: rgba(255, 255, 255, 0.5);}

@media all and (max-width: 990px){

    .map {
        width: 100%;
        height: auto;
    }

    .contact {
        display: flex;
        flex-direction: column;
    }

    .contact img {
        width: 8vw;
        height: auto;
    }
}

/*Disponibilities : End*/

/* Mentions-légales/CGV/CGU */

.law {text-align: justify;}