@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap');

@font-face {
  font-family: Futura;
  src: url(./fonts/FuturaCyrillicMedium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Futura;
  src: url(./fonts/FuturaCyrillicDemi.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Futura;
  src: url(./fonts/FuturaCyrillicBook.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Futura;
  src: url(./fonts/FuturaCyrillicLight.ttf);
  font-weight: 300;
}

*{
	padding:0px;
	border:0px;
	margin:0px;
}

html{
width:100%;
margin: auto;
}

.main_width{
width:85%;
margin:auto;
}


body{
font-family: 'futura-pt', 'Futura', sans-serif;
font-weight:400;
width:100%;
color: #161616;
}


/* *********************** COMMON *********************** */

p{
color:#161616;
line-height:24px;
font-size:17px;
}

p+p{
	margin-top: 15px;
}

h1{
color:#161616;
text-transform: uppercase;
font-size: 29px;
font-weight: 500;
line-height: 32px;
font-style: italic;
}

h2{
color:#161616;
text-transform: uppercase;
font-size: 31px;
font-weight: 300;
line-height: 40px;
}

.button{
display: inline-block;
text-transform: uppercase;
color: #161616;
padding-right: 35px;
margin-top: 35px;
font-weight: 500;
transition: all 0.5s ease-in-out;
font-size: 15px;
text-decoration:none;
transition:all 0.3s;
background-image: url(images/button-arrow.svg);
background-size: 30px;
background-repeat: no-repeat;
background-position: right center;
}

.button:hover{
padding-right: 45px;
}

a{
color:inherit;
text-decoration:underline;
transition: all 0.2s ease-in-out;
}



/* *********************** HEADING MSG*********************** */
#heading{
width:100%;
text-align:center;
background-color:#282725;
z-index: 99;
}

#heading p{
color: white;
margin: 0;
padding: 0 70px;
box-sizing: border-box;
}



/* *********************** BANNER / MENU *********************** */
#banner{
width:100%;
background-color: #686354;
text-align: center;
position: fixed;
top: 0;
left: 50%;
transform: translateX(-50%);
z-index: 100;
}

#banner .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin: 0 auto;
}

#banner .logo{
  width: 115px;
  margin: 13px 0;
  height: auto;
}

#banner .logo img{
  width: 100%;
  height: auto;
}

#banner .infos{
  flex: 1;
  margin-left:15px;
  text-align: right;
}

#banner .infos .sub_menu{
  display: block;
  width: 100%;
  margin: 0 0 25px auto;
  text-align: right;
}

#banner .infos .sub_menu a{
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
}

#banner .infos .sub_menu a+a{
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #fff;
}

.menu-links{
  cursor: pointer;
}

#banner .menu-links.close{
	margin: 20px 0 0 20px;
  width: fit-content;
}

#banner .menu-links.open{
	display: block;
	margin: 20px 0 0 auto;
  color: #fff;
}

#banner .menu-links.open img{
	transform: translateY(4px);
	margin-left: 5px;
}

.burger{
position: fixed;
top: 0;
right: -400px;
width: 350px;
max-width: 100%;
height: 100vh;
padding-top: 25px;
margin: 0;
-webkit-box-shadow: 0px 2px 15px 0px #363636;
box-shadow: 0px 2px 15px 0px #363636;
transition: all 0.6s;
overflow-y: auto;
z-index: 100;
background-color: #686354;
}

.burger.open{
right: 0;
}

.burger ul {
text-align: left;
padding: 25px 0 25px;
list-style: none;
}

.burger ul li:not(.responsive)+li.responsive{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ececec;
}

#banner .burger ul a{
text-decoration: none;
font-size: 16px;
padding: 15px 20px;
transition: all 0.4s;
display: block;
color: #fff;
text-transform: uppercase;
}

#banner .burger ul li a:hover{
background-color: #fff;
color: #161616;
}

@media screen and (max-width: 500px) {
  #banner .logo{
    margin: 24px 0;
  }
  #banner .infos .sub_menu{
    margin: 0 0 10px auto;
  }
  #banner .infos .sub_menu a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 0 0 0 auto;
  }
  #banner .infos .sub_menu a+a {
    margin-left: auto;
    padding-left: 0;
    border-left: none;
    margin-top: 14px;
  }
  #banner .menu-links.open{
    margin: 0 0 0 auto;
  }
}


/* *********************** PAGES *********************** */


/* ***** HOME ***** */
#home{
text-align:center;
}

#home .intro{
    height: 1100px;
  display: flex;
  background-color: #686354;
  flex-direction: column;
  margin-top: 95px;
}

#home .intro .hide{
  font-size: 0;
  position: absolute;
  top: 0;
  left: -2000px;
  opacity: 0;
}

#home .intro .item{
  flex: 4;
  height: 100%;
  transition: all 1s;
  position: relative;
}

#home .intro .item+.item{
  border-top: 4px solid #fff;
}

#home .intro .item:first-of-type{
  border-bottom: 4px solid #fff;
}

#home .intro .item .background{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#home .intro .item .background img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#home .intro .titre{
  position: absolute;
  left: 0;
  bottom: 70px;
  text-transform: uppercase;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  text-align: left;
  text-shadow: 1px -1px 7px rgba(0,0,0,0.35);
  transition: all 0.8s;
	opacity: 0;
	animation: introtitles 1s ease-in-out;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	font-size: 46px;
	line-height: 51px;
}

@keyframes introtitles {
  0% { left: -30px; opacity: 0; }
  100% { left: 0; opacity: 100%; }
}

#home .c2{
  margin: 150px auto 200px;
  position: relative;
}

#home .c2 .content{
  width: 100%;
  margin: 0 auto 50px;
  text-align: left;
  display: block;
  max-width: 550px;
}

#home .c2 .content h2{
  margin-bottom: 30px;
}

#home .c2 .content p{
}

#home .c2 .image{
  width: 100%;
  margin: 0 auto;
  text-align: left;
  display: block;
  max-width: 550px;
  height: 400px;
}

#home .c2 .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home .c2 .deco{
	display: none;
}

#home .c3{
  margin-bottom: 100px;
}

#home .c3 .hide{
  font-size: 0;
  position: absolute;
  top: 0;
  left: -2000px;
  opacity: 0;
}

#home .c3 #slider-1, #home .c3 #slider-2{
	width: 100%;
  height: 220px;
	margin: 0 auto 10px;
	overflow: hidden;
}

#home .c3 .owl-item{
	width: 100%;
	text-align: center;
}

#home .c3 .item{
	text-decoration: none;
	position: relative;
	width: 97%;
	margin: 0 auto;
	height: 220px;
	display: block;
}

#home .c3 .item .img{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#home .c3 .item .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s;
}

#home .c3 .item:hover .img img{
	transform: scale(1.1);
}

#home .c4{
  margin: 150px auto ;
  position: relative;
}

#home .c4 .content{
  width: 100%;
  margin: 50px auto 0;
  text-align: left;
  display: block;
  max-width: 550px;
}

#home .c4 .content h2{
  margin-bottom: 30px;
}

#home .c4 .content p{
}

#home .c4 .content p.important{
  color: #686354;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 23px;
  font-weight: 600;
}

#home .c4 .image{
  width: 100%;
  margin: 0 auto;
  text-align: left;
  display: block;
  max-width: 550px;
  height: 400px;
}

#home .c4 .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home .c4 .image:after{
  content:'';
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 90px;
  height: 90px;
  background-image: url(images/deco-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#home .c5{
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

#home .c5 img{
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
}

#home .c5 p{
	max-width: 550px;
	margin: 20px auto 0;	
  text-align: left;
}

@media screen and (max-width: 500px) {
  #home .intro .titre{
    font-size: 33px;
    line-height: 37px;
    padding: 0 25px;
  }
}

/* ***** SERVICES ***** */
#services .intro{
  padding: 170px 0 40px;
  text-align: center;
	background-color: #fff;
}

#services .intro .sub_title{
  color: #686354;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 23px;
  font-weight: 600;
  margin-bottom: 8px;
}

#services #slider-1{
	width: 100%;
  height: 220px;
	margin: 0 auto;
background-color: #fff;
overflow: hidden;
}

#services #slider-1 .owl-item{
	width: 100%;
	text-align: center;
}

#services #slider-1 .item{
	text-decoration: none;
	position: relative;
	width: 97%;
	margin: 0 auto;
	height: 220px;
	display: block;
}

#services #slider-1 .item .img{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#services #slider-1 .item .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s;
}

#services #slider-1 .item:hover .img img{
	transform: scale(1.1);
}

#services .c2{
background-color: #fff;
padding-top: 100px;
}

#services .c2 .content{
  max-width: 550px;
  margin: 0 auto;
}

#services .c2 p{
}

#services .c3{
  text-align: center;
  margin: 0 auto;
	position: relative;
	padding: 170px 0 0;
}

#services .c3 .background{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
}

#services .c3 .background img{
position: fixed;
top: 0;
left: 50%;
transform: translateX(-50%);
max-width: 2200px;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -2;
}

#services .c3 .item{
    background-color: #686354;
  padding: 25px 27px;
  display: block;
  vertical-align: top;
  width: 100%;
  margin: 0 auto 50px;
  box-sizing: border-box;
  text-align: left;
  max-width: 550px;
}

#services .c3 .item h2{
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  font-style: italic;
  display: inline-block;
  transition: all 0.4s;
  margin-bottom: 30px;
}

#services .c3 .item ul{
  list-style: none;
}

#services .c3 .item ul li{
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
  padding-left: 20px;
  position: relative;
}

#services .c3 .item ul li:after{
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  background-color: #fff;
  opacity: 0.5;
  width: 7px;
  height: 7px;
  border-radius: 20px;
}

#services .c3 .item ul li+li{
  margin-top: 10px;
}

#services .c4{
  text-align: center;
  padding: 100px 0;
	background-color: #fff;	
}

#services .c4 .image{
  display: block;
  width: fit-content;
  margin: 0 auto 30px;
}

#services .c4 img{
  height: auto;
  width: 300px;
}

/* ***** CONTACT ***** */

#contact{
text-align:center;
padding-top: 170px;
}

#contact h1{
  margin-bottom: 50px;
}

#contact .c1{
display: inline-block;
vertical-align: middle;
width: 100%;
margin: 0 auto 50px;
text-align: center;
}

#contact .c1 h2{
  margin-bottom: 20px;
}

#contact .c1 p span.head{
display:block;
width:100%;
font-size:12px;
line-height:14px;
text-transform:uppercase;
color: #686354;
}

#contact .c1 p{
  font-size: 17px;
  text-transform: uppercase;
}

#contact .c1 .microdata{
display:none;
}

#contact .c1 a{
  text-decoration: none;
}

#contact .c1 a:hover{
  text-decoration: underline;
}

#contact .c2{
display:block;
width:100%;
max-width: 350px;
height: 400px;
position: relative;
margin: 0 auto;
}

#contact .c2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

#contact .c2:after{
  content:'';
  position: absolute;
  right: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  background-image: url(images/deco-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ***** Mentions légales ***** */


#legal{
text-align:center;
margin-top: 200px;
}


#legal h1{
text-align:center;
background-position:bottom center;
margin-bottom:73px;
}

#legal h2{
background-position: 0px 7px;
position: relative;
bottom: 0px;
margin-top: 14px;
margin-bottom: 14px;
font-size:28px;
line-height:30px;
background-position: bottom left;
padding-bottom: 7px;
}

#legal h3{
line-height:23px!important;
padding-bottom: 6px!important;
}

#legal p{
margin-bottom:5px;
}

#legal p span{
display:inline-block;
vertical-align:top;
width:166px;
text-decoration:underline;
}

#legal .c0{
width:600px;
text-align:left;
display:inline-block;
vertical-align:top;
border:1px solid #c0c0c0;
text-align:left;
padding:1%;
margin-bottom:30px;
background-color:white;
border-radius:13px;
}

#legal .c1{
display:inline-block;
vertical-align:top;
width:85%;
padding:1%;
border:1px solid #c0c0c0;
text-align:left;
margin-bottom:30px;
min-height:262px;
background-color:white;
border-radius:13px;
}

#legal .c1.last{
margin-right:0px;
}

#legal .c1 p{
margin-bottom:8px;
font-size:13px;
line-height:22px;
}

#legal .c2{
width:85%;
padding:1%;
text-align:left;
display:inline-block;
vertical-align:top;
border:1px solid #c0c0c0;
margin-bottom:30px;
height:600px;
overflow:auto;
padding-bottom:30px;
background-color:white;
border-radius:13px;
}

#legal .c2 h3{

}

#legal .c2 h4{

}

#legal .c2 p{
margin-bottom:8px;
font-size:13px;
line-height:22px;
}

#legal .c2 ul li{
margin-bottom:5px;
font-size:13px;
line-height:22px;
padding-left:15px;
list-style-type:none;
}

#legal .c2 ul ul li{
padding-left:30px;
}

#legal .c2.last{
margin-right:0px;
}


/* ***** 404 ***** */

#e404{
text-align:center;
margin-top: 200px;
}

#e404 h1{
	text-align:center;
background-position:bottom center;
margin-bottom:73px;
}


/* *********************** FOOTER *********************** */

#footer{
width:100%;
margin-top: 150px;
padding-top: 50px;
text-align: center;
border-top: 1px solid #7f7f7f41;
background-color: #fff;
}

#footer .logo img{
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

#footer .links{
  color: #7f7f7f;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

#footer .links span{
  display: block;
  width: 100%;
  margin: 0 auto;
}

#footer .links span+span{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #7f7f7f88;
}

#footer .links a{
  text-decoration: none;
}

#footer p.copyright{
color:#161616;
text-align:center;
font-size:14px;
margin-top:90px;
padding-bottom:15px;
margin-bottom:0px;
}

#footer p.copyright a{
color:#161616;
text-decoration:underline;
}

#footer p.copyright+a{
width: 100px;
display: block;
margin: 0 auto;
padding-bottom: 30px;
}

#footer p.copyright+a img{
width: 100%;
height: auto;
opacity: 0.4;
}



/* ***** CAPTCHA ***** */

.grecaptcha-badge { 
	visibility: hidden; 
}


/* ***** COOKIES ***** */

#cookieChoiceInfo{
	box-sizing: border-box;
}

#cookieChoiceInfo a{
	display: inline-block;
}

/* ***** AOS ***** */

.fade_container {
    overflow-x: hidden;
}