@charset "utf-8";

@font-face {
font-family: 'Rubik-Light';
src: url('Rubik-Light.ttf');
}
@font-face {
font-family: 'Photoshoot';
src: url('Photoshoot.ttf');
}
@font-face {
font-family: 'Rubik-Medium';
src: url('Rubik-Medium.ttf');
}
@font-face {
font-family: 'Rubik-Regular';
src: url('Rubik-Regular.ttf');
}
@font-face {
font-family: 'JuliusSansOne-Regular';
src: url('JuliusSansOne-Regular.ttf');
}
@font-face {
font-family: 'Mirage';
src: url('Mirage.otf');
}
@font-face {
font-family: 'now-light';
src: url('now-light.otf');
}

html{
	height: 100%;
	display: flex;
	justify-content: center;

}
body{
	font-family: 'Rubik-Regular';
	min-height: 100%;
	position: relative;
	font-size: 1rem;
	width: 100%;
	max-width: 2200px;
	background-color: #FFF;
	color: #6f6f6f;

}
#container{
	padding:0rem 2rem 2rem 2rem;
	font-size: 1.2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media screen and (max-width: 1000px){
	#container{
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 750px){
	#container{
		font-size: 1rem;
	}
}
@media screen and (max-width: 500px){
	#container{
		padding:0rem 0.5rem 2rem 0.5rem;
	}
}
.marginTop05rem{
	margin-top: 0.5rem;
}
.marginTop1rem{
	margin-top: 1rem;
}
.marginTop2rem{
	margin-top: 2rem;
}
.marginTop3rem{
	margin-top: 3rem;
}
.marginTop5rem{
	margin-top: 5rem;
}
.marginBottom1rem{
	margin-bottom: 1rem;
}
.marginBottom2rem{
	margin-bottom: 2rem;
}
.marginBottom3rem{
	margin-bottom: 3rem;
}
.marginBottom4rem{
	margin-bottom: 4rem;
}
.paddingCotes2rem{
	padding: 0rem 2rem 0rem 2rem;
}
.paddingCadre{
	position: relative;
	padding: 0rem 4rem 0rem 4rem;
}
@media screen and (max-width: 1000px){
	.paddingCadre{
		padding: 0rem 2rem 0rem 2rem;
	}
}
@media screen and (max-width: 600px){
	.paddingCadre{
		padding: 0rem 1rem 0rem 1rem;
	}
}
.texteJustify{
	text-align: justify;
}
.texteCenter{
	text-align: center;
}
.flex1{
	flex: 1;
}
.flex2{
	flex: 2;
}
a{
	transition: .25s ease-in-out;
}
a:hover{
	transition: .25s ease-in-out;
	color: #65a368;
}
.texteGras{
	font-weight: bold;
}
.texteItalique{
	font-style: italic;
}
.weight600{
	font-weight: 600;
}
.couleurSecondaire{
	color: #65a368;
}
.couleurNoire{
	color: #000;
}
.couleurOrange{
	color: #65a368;
}
#nomH1{
	padding: 0.8rem 0.3rem 1.5rem 0.3rem;
	text-align: center;
	font-size: 1.1rem;
}
																							/*Header*/
        #bandeauHeader {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: relative;
            border-bottom: 2px solid #e3d634;
        }

        .header-top {
            width: 100%;
            padding: 10px 0.3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .phone-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
            color: #333;
            text-decoration: none;
            font-weight: 500;
        }

        .phone-contact img {
            width: 20px;
            height: 20px;
            filter: brightness(0) saturate(100%) invert(47%) sepia(12%) saturate(1000%) hue-rotate(77deg) brightness(95%) contrast(85%);
        }

        .contact-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }

        .header-top {
            width: 100%;
            padding: 10px 0.3rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            display: block;
            width: 32px;
            height: 32px;
        }

        .social-icons img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .devis-btn {
            background-color: #65a368;
            color: white;
            padding: 3px 16px;
            border: none;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            white-space: nowrap;
        }

        .devis-btn:hover {
            background-color: #5a8f5d;
            color: white;
        }

        .header-content {
            width: 100%;
            padding: 2px 0.3rem 60px 0.3rem;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .company-info {
            text-align: left;
        }

        .logo-section img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .company-info .company-name {
            font-family: 'Mirage';
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
            text-decoration: none;
            white-space: nowrap;
        }

        .company-info .company-name .green {
            color: #65a368;
        }

        .company-info .tagline {
            font-family: 'Photoshoot';
            font-size: 1.4rem;
            color: #666;
            font-style: italic;
            font-weight: 300;
            white-space: nowrap;
        }

        .nav-menu {
            width: 100%;
            margin-top: 0;
            background-color: white;
            border-top: 1px solid #eee;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .nav-menu ul {
            display: flex;
            justify-content: flex-end;
            gap: 40px;
            list-style: none;
            margin: 0;
            padding: 10px 0;
            margin-right: 0.5rem;
        }

        .nav-menu a {
            font-family: 'JuliusSansOne-Regular';
            text-decoration: none;
            color: #666;
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #65a368;
        }

        /* Menu hamburger pour mobile */
        .menu-toggle {
            display: none;
            position: fixed;
            top: 40px;
            left: 20px;
            z-index: 1000;
            background: none;
            border: none;
            cursor: pointer;
        }

        .hamburger {
            width: 30px;
            height: 3px;
            background-color: #333;
            margin: 6px 0;
            transition: 0.3s;
            display: block;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: white;
            z-index: 999;
            padding-top: 80px;
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
        }

        .mobile-nav.active {
            transform: translateY(0);
        }

        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-nav a {
            font-family: 'JuliusSansOne-Regular';
            text-decoration: none;
            color: #333;
            font-size: 1.3rem;
            font-weight: 500;
        }

        /* Version mobile : suppression de mobile-top-bar */
        .mobile-top-bar {
            display: none;
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            /* On garde la barre du haut telle quelle */
            .header-content {
                padding: 2px 0.3rem 10px 0.3rem;
            }

            .logo-section img {
                width: 100px;
                height: 100px;
            }

            .company-info .company-name {
                font-size: 1.8rem;
            }

            .company-info .tagline {
                font-size: 1rem;
            }

            .social-icons a {
                width: 28px;
                height: 28px;
            }

            .phone-contact {
                font-size: 1rem;
            }

            .nav-menu {
                display: none;
            }

            .nav-menu a {
                font-size: 1.1rem;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media screen and (max-width: 480px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                padding: 2px 0.3rem 10px 0.3rem;
            }

            .logo-section {
                justify-content: center;
            }

            .company-info .company-name {
                font-size: 1.2rem;
            }

            .company-info .tagline {
                font-size: 0.7rem;
            }
        }
																							/*FIN Header*/
																							/*Index*/
#bandeauActivitees{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.3rem;
}
@media screen and (max-width: 800px){
	#bandeauActivitees{
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 700px){
	#bandeauActivitees{
		font-size: 1rem;
	}
}
.agencementActivitees{
display: flex;
justify-content: center;
margin: 0rem 0.2rem;
}
@media screen and (max-width: 650px){
	.agencementActivitees{
		flex-wrap: wrap;
	}
}
.enumerationActivitees{
	display: flex;
	margin: 0rem 0rem;
	width: 400px;
	justify-content: center;
}
@media screen and (max-width: 1612px){
	.enumerationActivitees{
		justify-content: flex-start;
	}
}
@media screen and (max-width: 800px){
	.enumerationActivitees{
		width: 350px;
	}
}
@media screen and (max-width: 700px){
	.enumerationActivitees{
		width: 321px;
	}
}
.enumerationActivitees img{
	height: 30px;
}

.blockActivitees{
	font-family: 'now-light';
	margin-top: 3rem;
	width: 90%;
}
@media screen and (max-width: 1000px){
.blockActivitees{
margin-top: 3rem;
	width: 100%;
}}
.blockActivitees h2{
	font-family: 'JuliusSansOne-Regular';
	font-size: 1.9rem;
	font-weight: bold;
	margin-bottom: 1rem;
}
@media screen and (max-width: 600px){
	.blockActivitees h2{
		font-size: 1.5rem;
		text-align: center;
	}
}
@media screen and (max-width: 550px){
	.blockActivitees h2{
		font-size: 1.3rem;
	}
}
.agencementBlockActivitees{
	display: flex;
	text-align: justify;
}
.imageParagraphe{
	min-width: 320px;
	max-width: 320px;
}
@media screen and (max-width: 1000px){
.imageParagraphe{
	display: none;
}
}
.agencementBlockActivitees img{
	padding: 0.3rem 0.3rem 0.3rem 0.3rem;
	width: 100%;
	border-width: 1px;
	border-color: #65a368;
	border-style: solid;
	border-left-style: none;
	border-bottom-style: none;
}
.agencementBlockActivitees p{
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}
.agencementBlockActivitees ul{
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}
@media screen and (max-width: 1000px){
.agencementBlockActivitees p{
padding-left: 0rem;
}
.agencementBlockActivitees ul{
	padding-left: 0rem;
}
}
.Under1000{
	display: none;
}
	.paragraphe{
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-left: 3rem;
	}
@media screen and (max-width: 1000px){
.paragraphe{
	display: block;
	float: left;
}
}
@media screen and (max-width: 1000px){
.paragraphe img.Under1000{
	display: block;
	float: left;
	width: 300px;
	margin: 0rem 1rem 0rem 0rem;
}
}
@media screen and (max-width: 700px){

	.paragraphe{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0rem 0rem 1rem 0rem;
	}
.paragraphe img.Under1000{
	display: flex;
	float: none;
	width: 350px;
	margin: 0rem 0rem 1rem 0rem;
	border-radius: 30px;
}
}
.divAvis{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 2rem;
}

@media screen and (max-width: 420px){
	.divAvis{
		flex-direction: column;
		max-width: 300px;
	}
}

.divAvis  img{
	width: 300px;
}
.vignettesAvis{
	border: 1px solid #000;
	margin: 2rem 2rem;
	display: flex;
	flex-direction: column;
	text-align: center;

}
@media screen and (max-width: 790px){
	.vignettesAvis{
		margin: 0rem 0.5rem;
	}
}

@media screen and (max-width: 480px){
	.vignettesAvis{
		margin: 0rem 0.2rem;
	}
}
@media screen and (max-width: 420px){
	.vignettesAvis{
		margin: 0.2rem 0rem;
	}
}

.vignettesAvis img{
		padding: 1rem;
	border: 1px solid #FFF;
}
.boutonLaisserAvis{
	margin-top: 1rem;
	transition: .25s ease-in-out;
	font-weight: bold;
}
.vignettesAvis a:hover{
	color: #FFF;
}


																/*FIN index*/
                      							  			  /*formulaire contact*/
#agencementContact {
    display: flex;
    justify-content: space-between;
    color: #636363;
    padding: 0rem 5rem;
    width: 100%;
    box-sizing: border-box;
    background-color: #e5e5e5;
}

@media screen and (max-width: 1450px) {
    #agencementContact {
        padding: 0rem 2rem;
    }
}

@media screen and (max-width: 1200px) {
    #agencementContact {
        flex-direction: column;
        justify-content: center;
        padding: 0rem 0.2rem;
    }
}

#coordonees {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 8px;
}

@media screen and (max-width: 1050px) {
    #coordonees {
        font-size: 16px;
    }
}

#coordonees span {
    margin-right: 1rem;
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 1200px) {
    #coordonees span {
        margin: 0.5rem 1rem 0rem 0rem;
    }
}

@media screen and (max-width: 1300px) {
    #coordonees iframe {
        width: 30rem;
    }
}

@media screen and (max-width: 1200px) {
    #coordonees iframe {
        display: none;
    }
}

.formulaire_contact {
    flex: 4;
    font-size: 1.2rem;
    padding: 1rem;
    display: flex;
    justify-content: end;
    margin-left: 3rem;
    max-width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .formulaire_contact {
        justify-content: center;
        margin-left: 0;
    }
}

.formulaire_contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 50rem;
}

@media screen and (max-width: 580px) {
    .formulaire_contact form {
        font-size: 1rem;
    }
}

.formulaire_contact form div {
    margin-top: 1rem;
}

.formulaire_contact form ul li {
    text-align: center;
}

.inputedit {
    width: 100%;
    max-width: 50rem;
    padding: 0.8rem;
    border: 1px solid #1d1d1d;
    background-color: #f5f5f5;
    color: #0d0c0c;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.inputedit:focus {
    outline: none;
    border-color: #636363;
    box-shadow: 0 0 5px rgba(99, 99, 99, 0.2);
}

@media screen and (max-width: 1600px) {
    .inputedit {
        max-width: 40rem;
    }
}

@media screen and (max-width: 1400px) {
    .inputedit {
        max-width: 35rem;
    }
}

@media screen and (max-width: 1000px) {
    .inputedit {
        max-width: 25rem;
    }
}

@media screen and (max-width: 600px) {
    .inputedit {
        max-width: 100%;
        width: 100%;
    }
}

#textareamessage {
    min-height: 10rem;
    resize: vertical;
    font-family: inherit;
    border-radius: 4px;
    padding: 0.5rem;
    color: #0d0c0c;
}

#valider {
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    margin-top: 1.5rem;
    padding: 0.5rem 2rem;
    height: auto;
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #636363;
    border: none;
    border-radius: 4px;
}

@media screen and (max-width: 480px) {
    #valider {
        font-size: 1.1rem;
    }
}

#valider:hover {
    background-color: #4a4a4a;
    transform: translateY(-2px);
}

.asterisque {
    color: #c50303;
}

.error {
    color: #ec5f66;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    padding: 0.5rem;
    background-color: rgba(236, 95, 102, 0.1);
    border-radius: 4px;
}

#titre_form {
    font-size: 30px;
}

@media screen and (max-width: 1000px) {
    #titre_form {
        font-size: 1.2rem;
    }
}

#mapTel {
    display: none;
    margin: auto;
}

@media screen and (max-width: 1200px) {
    #mapTel {
        margin-bottom: 1rem;
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    #mapTel iframe {
        width: 30rem;
    }
}

@media screen and (max-width: 600px) {
    #mapTel iframe {
        width: 25rem;
    }
}

@media screen and (max-width: 500px) {
    #mapTel iframe {
        width: 20rem;
    }
}

@media screen and (max-width: 355px) {
    #mapTel iframe {
        width: 16rem;
    }
}

iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.NomSite{
font-size: 1.5rem;
}
#contact{
  font-size: 1.5rem;
  text-align: center;
  border-width: 1px;
  border-color: #274227;
  border-style: solid;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
               										           /*fin formulaire contact*/
                    				      						/*Footer*/
#bandeauFooter{
border-width: 1px;
border-color: #65a368;
border-style: solid;
border-right-style: none;
border-left-style: none;
border-bottom-style: none;
}
#CGU{
	color: #636363;
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 1rem 0.5rem 1rem;
}
@media screen and (max-width: 366px){
	#CGU{
	padding: 0.5rem 0.3rem 0.5rem 0.3rem;
	font-size: 0.9rem;
}
}
.basDePage{
position: fixed;
bottom: 0px;
width: 100%;
}
                    				      						/*FIN Footer*/
                                          /*réalisations */
.conteneurRealisations{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 0rem 8rem 3rem 8rem;
}
@media screen and (max-width: 1000px){
	.conteneurRealisations{
	padding: 0rem 3rem 3rem 3rem;
}
}
@media screen and (max-width: 1000px){
	.conteneurRealisations{
	padding: 0rem 1rem 3rem 1rem;
}
}
.conteneurRealisations a{
	width: 32.5%;
	margin-top: 0.8rem;
	display: flex;
	align-items: center;
	background-color: #262628;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	border-color: #FFF;
	border-style: solid;
	border-width: 1px;
}
.conteneurRealisations a img{
	width: 100%;
	max-height: 700px;
}
.conteneurRealisations a:hover {
	-webkit-transform: scale(1.035);
	transform: scale(1.035);
}
#titrePageRealisations{
	margin-top: 4rem;
}
@media screen and (max-width: 800px){
	#titrePageRealisations{
	margin-top: 1rem;
}
}
@media screen and (max-width: 1000px){
#titrePageRealisations div.ecriture2CadreNosServices{
	max-width: 15rem;
}}

html body div#container div.conteneurRealisations a.sansBackgroundColor{
	background-color: #fff;
}
.conteneurRealisations div img{
	width: 100%;
}
html body div#container div.conteneurRealisations div.sansBackgroundColor{
	background-color: #FFF;
	width: 32.5%;
	margin-top: 0.8rem;
	display: flex;
	align-items: center;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	border-color: #FFF;
	border-style: solid;
	border-width: 1px;
}
.separateur{
	height: 2px;
	width: 100px;
	background-color: #65a368;
	margin-bottom: 0.5rem;
}
.H2Realisations{
	width: 100%;
	text-align: left;
	margin-top: 3rem;
	margin-bottom: 0rem;
	font-family: 'JuliusSansOne-Regular';
	font-size: 1.5rem;
}
.merciConfirmation{
	width: 100%;
	text-align: center;
	margin-top: 3rem;
	margin-bottom: 0rem;
	font-family: 'JuliusSansOne-Regular';
	font-size: 1.5rem;
}
#menuRealisations{
	display: flex;
	font-family: 'JuliusSansOne-Regular';
	margin-top: 3rem;
	font-size: 1.5rem;
}
#menuRealisations a{
	padding: 0.2rem 1rem;
	margin: 0rem 1rem;
}
@media screen and (max-width: 1000px){
#menuRealisations{
	display: none;
}
}

                                          /*FIN page réalisations */
                                          /*page confirmation */
.messageRecu{
	text-align: center;
}
                                          /*FIN page confirmation */


                                          /*reveal */

.reveal-loaded .reveal [class*="reveal-"]{
	opacity: 0!important;
	transform: translateY(30px)!important;
	transition: 0s!important;
}
.reveal-loaded [class*="reveal-"]{
	transition: 1s /*cubic-bezier(.5,0,0,1)*/;
}
.reveal-loaded .reveal-2{
	transition-delay: .1s;
}
.reveal-loaded .reveal-3{
	transition-delay: .2s;
}
.reveal-loaded .reveal-4{
	transition-delay: .3s;
}

/*pour les utilisateur qui choisissent de ne pas avoir d'animation*/
@media (prefers-reduced-motion: reduce){
	.reveal [class*="reveal-"]{
	opacity: 1!important;
	transform: translateY(0)!important;
}
	[class*="reveal-"]{
	transition-duration: 0s!important;
	transition-delay: 0s!important;
}
}
                                          /*FIN  reveal */
