@charset "UTF-8";
/* CSS Document */


/* ------- TABLE -------/

1.0 	GENERAL

2.0		MENU
	2.1		MENU NAV
	2.2 	SLICKNAV MENU
	2.3. 	40eme

3.0		SECTIONS
	3.1 	HEADER
	3.2 	SECTION 1
	3.3 	SECTION 2
	3.4 	SECTION 3
	3.5 	SECTION 4
	3.6 	SECTION 5
	3.7 	SECTION 6
	3.8 	SECTION 7
	3.9 	SECTION 8
	3.10 	FOOTER
	
4.0 	TEXTES, TITRES
	4.1 	TEXTE-NEG
	4.2 	TEXTE-POS
	4.3 	TITRE-NEG
	4.4 	TITRE-POS
	

/*======================= 1.0 GENERAL =========================*/

body, p {
	margin:0;
	padding:0;
	overflow-x:hidden; 
    font-family: 'Open Sans', sans-serif;
	letter-spacing:1px;
	line-height: 1.5;
}

h1, h2{
	margin:0;
	padding:0;
	overflow-x:hidden; 
    font-family: 'Playfair Display', serif;	
	color: #FFF;
	letter-spacing:1px;
	z-index: 1;
}

a {
	text-decoration:none;
	color:#FFF;
	outline: 0;
}

a:hover {
	text-decoration:none;
	color: #4d4e4b;
	outline: 0;
}

.img {
	margin: 0;
	padding:0;

}

h1 {
	font-size:36px;
	letter-spacing:1px;
}

h2 {
	font-size:22px;
}

p {
	color: #FFF;
	font-size:14px;

}

.gm-link {
	font-size:14px;
	color: #C4DCC4;
	text-align:center;
}

@media screen and (max-width: 960px) {
	body {
		margin-top: -85px;
	}
}


/*======================= SWIPER CSS =======================*/
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img {
	height:100%;
}

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

.container-pagination {
    width: 100%;
    padding: 44px;
	margin-bottom:30px;
}
.swiper-pagination {
    width: 100%;
    left:0px;
}
.swiper-container-horizontal>.swiper-pagination {
	width:100%;
    bottom: 0px !important;
    left: 0;
}
.swiper-button-next, .swiper-button-prev {
    bottom: 400px !important;
    top:inherit !important;
}
.swiper-pagination-bullet {
    margin: 0px 6px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org…L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); 
    right: 20px;
    left: auto;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org…9.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 20px;
    right: auto;
}

@media screen and (max-width: 600px) {
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org…L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); 
	display:none;
	}
	.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org…9.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	display:none;
	}
}

/*======================= 2.0 HEADER =========================*/

#header {
	background-color: #c1bdb6;
	width: 100%;
	position: fixed;
	z-index: 2;
}

.menu-inner {
	max-width: 90%;
	margin: 0 auto;
}

#menu {
	display: none;
}

.img-logo {
	margin: 100px 0 0 0;
	height: 20px;
	
}

/*======================= 2.1 MENU NAV =========================*/

.nav {
	float: right;
	margin-top: 90px;
	letter-spacing:2px;
}

.nav ul {
	display: block;
}

.nav ul li {
	display: inline;
}

.nav ul li a {
	padding-left: 5px;
	padding-right: 5px;
}


/*======================= 2.2 SLICKNAV MENU =========================*/

.slicknav_menu {
	display:none;
}

.js #menu {
	display:none;
}
	
.js .slicknav_menu {
	display:none; 	
}

@media screen and (max-width: 960px) {

	#header {
		display: none;
	}
	
	.slicknav_menu {
		display:block;
	}
	
	.js #menu {
		display:block;
	}
		
	.js .slicknav_menu {
		display:block; 	
	}

}

.img-logo-mobile {
	display: none;
}

/*======================= 2.3 LOGO SLICKNAV MENU =========================*/

@media screen and (max-width: 960px) {
	.img-logo-mobile {
		display: block;
		height: 20px;
		position: fixed;
		z-index: 2;
		margin-left: 60px;
		margin-top:60px;
		margin:-40px 0 0 70px;
	}
}

@media screen and (max-width: 600px) {
	.img-logo-mobile {
		margin: -40px 0 0 40px;
	}
}


/*======================= 2.4 ANCHORS =========================*/

.anchor-section1 {
	margin-top: -145px;
	position: absolute;
}

@media screen and (max-width: 960px) {
	.anchor-section1 {
	margin-top: -145px;
	position: absolute;
	}
}

@media screen and (max-width: 600px) {
	.anchor-section1 {
		margin-top: -95px;
		position: absolute;
	}
}

.anchor-section2 {
	margin-top: -95px;
	position: absolute;
}

@media screen and (max-width: 960px) {
	.anchor-section2 {
	margin-top: -95px;
	position: absolute;
	}
}

@media screen and (max-width: 600px) {
	.anchor-section2 {
		margin-top: -96px;
		position: absolute;
	}
}



/*======================= 3.0 SECTIONS =========================*/

/*======================= 3.1 SECTION Header =========================*/

.section-inner {
	max-width: 900px;
	margin: 0 auto;
}

.tablet-img {
	display: none;
}

@media screen and (max-width: 960px) {
	.tablet-img {
		width: 100%;
		height: auto;
		margin: 0 auto;
		display: block;
	}
}

/*======================= 3.2 SECTION 1 Accueil =========================*/

#section1 {
	background: url(assets/cadresanciens_lutry.jpg) no-repeat center center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 900px;
	z-index:auto;
}
.section1-text {
	text-align: center;
	font-size: 38pt;
	position: relative;
	padding: 600px 300px 0 300px;
	color: #fff;
	z-index: 1;
	text-shadow: 0px 0px 5px #4d4e4b;
}
.arrow {
	position: relative;
	margin-top: 10px;
	z-index: 1;
}

.arrow-container {
	text-align: center;
	width: 80%;
	margin: 0 auto;
}

/*======================= 2.5 SECTION Header - logo 40e =========================*/

/*.logo40-container {
	text-align: left;
	width: 80%;
	margin: 0 auto;
	z-index:2;
}
*/
.logo40 {
	position: relative; 
	top:50px;
	left: 100px;
	z-index: 3;
}

@media screen and (max-width: 600px) {
	.logo40 {
		position: relative; 
		left:25px;
		}
	.img {
		max-width: 40%;
		height: auto;
	}
}


@media screen and (max-width: 960px) {
	#section1 {
		height: 700px;
		/* margin: 99px 0 0 0; */
	}
	.section1-text {
		font-size: 28pt;
		padding: 120px 100px 0 100px;
		color:#fff;
		z-index: 2;
	}
	.arrow {
		position: relative;
		z-index: 1;
}
}
@media screen and (max-width: 560px) {
	.section1-text {
		font-size: 26pt;
		padding: 60px 40px 0 40px;
		column-rule: #fff;
		z-index: 1;
	}
}

/*======================= 3.3 SECTION 2 prestations =========================*/

#section2 {
	background-color: #40743D;
}


/*======================= 3.4 SECTION 3 l'atelier =========================*/

#section3  {
	background-color: #6EA463;
	text-align:center;
	overflow:auto;
}
#section-galerie  {
	background: url(assets/cadresanciens_prestations.jpg) no-repeat center center; 
	text-align:center;
	overflow:auto;
}
#section-atelier  {
	background: url(assets/cadresanciens_atelier.jpg) no-repeat center center; 
	text-align:center;
	overflow:auto;
}

#section-reference  {
	background: url(assets/cadresanciens_autourde.jpg) no-repeat center center; 
	text-align:center;
	overflow:auto;
}


@media screen and (max-width: 960px) {
	.section3 {
		height: 450px;
		width: 100%;
		float: none;
	}
}

@media screen and (max-width: 560px) {
	.section3 {
		height: 550px;
	}
}

@media screen and (max-width: 400px) {
	.section3 {
	height: 600px;
}
}



/*======================= 3.9 SECTION 8 Contact =========================*/

#section8 {
	background-color: #40743D;

}

.title-neg {
	text-align: center;
	padding: 100px 0 40px 0;
	color:#fff;
}

.text-neg {
	text-align: center;
	font-size: 18px;
	padding-bottom: 100px;
	color:#fff;
}

/*======================= 3.10 FOOTER =========================*/

#section_footer {
	height:400px;
	border-top: 1px solid #EAEAEA;
	display: block;
	font-weight:100;
	font-size:12px;
	background-color: #40743D;
	padding-top:50px;

}	
	
/*======================= 4.0 TEXTES, TITRES =========================*/

/*======================= 4.1 TEXTE-NEG =========================*/

.text-neg {
	text-align: center;
	font-size: 20px;
	padding-bottom: 100px;
	color:#fff;
}

.text-neg a:hover{
	color:#C4DCC4;;	
}

@media screen and (max-width: 960px) {
.text-neg {
	width: 80%;
	line-height: 1.4;
	margin: 0 auto;
	padding-bottom: 50px;
}
}

/*======================= 4.1 TEXTE-POS =========================*/

.text-pos {
	padding: 0 0 100px 0;
	font-weight: 200;
	font-size: 16px;
	text-align: center;
	color:#4d4e4b;
}

@media screen and (max-width: 960px) {
		.text-pos {
		padding: 60px 0px 60px 0px;
		width: 80%;
		margin: 0 auto;
	}
}

/*======================= 4.1 TITRE-NEG =========================*/

.title-neg {
	text-align: center;
	padding: 250px 0 80px 0;
	color:#fff;
	font-size: 52px;
	animation-duration: 2s;
  	animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

.title2-neg {
	text-align: center;
	line-height:1.3em;
	padding: 100px 0 80px 0;
	font-size: 34px;

}

.title3-neg {
	text-align: center;
	line-height:1.3em;
	padding: 150px 0 80px 0;
	font-size: 40px;
	text-shadow: 0 0 25px #1f6421;
	letter-spacing: 1px;

}

@media screen and (max-width: 960px) {
	.title-neg {
	padding: 120px 0 40px 0;
	font-size: 36px;
	}
}

/*======================= 4.1 TITRE-POS =========================*/

.title-pos {
	text-align: center;
	padding: 100px 0 40px 0;
	color:#4d4e4b;
}

@media screen and (max-width: 960px) {
	.title-pos {
		padding: 50px 0 40px 0;
	}
}

/*======================= 4.2 TITRE-FOOTER =========================*/

.text-footer {
	text-align: center;
	font-size: 11px;
	color:#fff;
}

@media screen and (max-width: 960px) {
	#section7 .section-inner {
		width: 95%;
	}
	
	.text-footer {
		width: 60%;
		margin: 0 auto;
		padding-bottom: 50px;
	}
}

.text-footer a:hover{
	color:#C4DCC4;;	
}


/*======================= 4.3 TEXTE SUR IMAGE-CONTAINERR =========================*/
.text-container {
    background: rgba(0, 0, 0, 0.8);
	opacity: 0.8;
    z-index: 1;
    position: absolute;
    text-align: center;
	padding: 10px 20px 10px 20px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 88%;
    color: white;
    width: 50%;
	
	
/*======================= the end ! =========================*/











