/* =========== CSS RESET =========== */

html, body, button, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, input, textarea, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, c-footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	text-decoration: none;
	color: inherit;
}
img, article, aside, details, figcaption, figure,
c-footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	txt: '';
	txt: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button{
	background-color: transparent;
	cursor: pointer;
}
*:focus{
	outline: 0;
}
strong{
	font-weight: 700;
}
ul li{
	list-style-position: inside;
}

/* =========== NAMING CONVENTIONS ===========

u- for utility classes (single purposed styling classes)
o- for object classes (used in unrelated contexts, modify with caution)
c- for component (specific piece of UI, can be changed safely)
js- for JavaScript hooks (therefore never used for css styling)
No prefix on an id means "for anchors only"
is- & has- for applied temporary statuses
*/

/* =========== BASE RULES & ATOMIC CSS ELEMENTS =========== */

/*Layout and background*/
html{
  scroll-behavior: smooth;
	background-color: #e24124;
	scrollbar-color: #e24124 #212A31;
}
::-webkit-scrollbar{
  background: #212A31;
	width: 1rem;
}
::-webkit-scrollbar-thumb{
  background-color: #e24124;
}
::-moz-selection{
	background: #e24124;
	color: #fff;
}
::selection{
	background: #e24124;
	color: #fff;
}
.c-blocpage{
	min-height: 100vh;
  max-width: 120rem;
  margin: 0 auto;
	position: relative;
	font-family: 'assistant';
	line-height: 1.7;
	background-color: #fff;
	padding: 5rem 0 0 0;
	overflow-x: hidden;
	font-size: 1.1rem;
	color: #212A31;
}
section{
	position: relative;
}
.o-flexbox{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
 	-webkit-box-align: center;
 	    -ms-flex-align: center;
 	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.c-wrapper{
	max-width: 90rem;
	position: relative;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin: 0 auto;
	padding: 5rem 3rem;
}

.o-section{
	position: relative;
	padding: 6rem 0;
}
.o-section--bar{
	padding: 6rem 4.5rem;
	max-width: 101rem;
	margin: 0 auto;
}
.o-section--bar::before{
	width: 100%;
	min-width: 15rem;
	display: block;
	content:'';
	height: 1px;
	background: #777a7f;
	opacity: 0.5;
}
.o-section--bar::after{
	width: 7.5rem;
	position: absolute;
	top: 6rem;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	display: block;
	content:'';
	height: 0.25rem;
	background: #e24124;
}

@media all and (max-width: 800px){
	.o-section--bar{
		padding: 6rem 2.5rem;
		max-width: 101rem;
		margin: 0 auto;
	}
}
@media all and (max-width: 380px){
	.o-section--bar{
		padding: 6rem 1.75rem;
	}
}

/*Typos*/
@font-face{
    font-family: 'assistant';
    src: url('/fonts/assistant/Assistant-Regular.eot');
    src: url('/fonts/assistant/Assistant-Regular?#iefix') format('embedded-closetype'),
         url('/fonts/assistant/Assistant-Regular.woff2') format('woff2'),
         url('/fonts/assistant/Assistant-Regular.woff') format('woff'),
         url('/fonts/assistant/Assistant-Regular.ttf') format('truetype'),
         url('/fonts/assistant/Assistant-Regular.svg#Assistant-Regular') format('svg');
    font-weight: 400;
}
@font-face{
    font-family: 'assistant';
    src: url('/fonts/assistant/Assistant-SemiBold.eot');
    src: url('/fonts/assistant/Assistant-SemiBold?#iefix') format('embedded-closetype'),
         url('/fonts/assistant/Assistant-SemiBold.woff2') format('woff2'),
         url('/fonts/assistant/Assistant-SemiBold.woff') format('woff'),
         url('/fonts/assistant/Assistant-SemiBold.ttf') format('truetype'),
         url('/fonts/assistant/Assistant-SemiBold.svg#Assistant-SemiBold') format('svg');
    font-weight: 700;
}
@font-face{
    font-family: 'assistant';
    src: url('/fonts/assistant/Assistant-ExtraBold.eot');
    src: url('/fonts/assistant/Assistant-ExtraBold?#iefix') format('embedded-closetype'),
         url('/fonts/assistant/Assistant-ExtraBold.woff2') format('woff2'),
         url('/fonts/assistant/Assistant-ExtraBold.woff') format('woff'),
         url('/fonts/assistant/Assistant-ExtraBold.ttf') format('truetype'),
         url('/fonts/assistant/Assistant-ExtraBold.svg#Assistant-ExtraBold') format('svg');
    font-weight: 900;
}
p{
	margin: 1.5rem 0;
	max-width: 45rem;
}
h1, h2, h3{
	max-width: 40rem;
	line-height: 1.2;
	font-weight: 900;
	color: #212A31;
}
b{
	color: #e24124;
}
.o-h2{
	font-weight: 900;
	font-size: 1.7rem;
	margin-bottom: 1.5rem;
}
.o-h2--big{
	font-weight: 900;
	font-size: 2.2rem;
	margin-top: 4.5rem;
}
.u-vert{
	color: #DD614A;
}
.u-fff{
	color: #fff;
}
.u-bg--fff{
	background: #F2F5EA;
}
.u-bg--dk{
	background: #212A31;
}
.u-target-bk, .u-target-bk--dk{
	position: relative;
}
.u-target-bk::after, .u-target-bk--dk::after{
	content:'';
	position: absolute;
	background-image: url('/images/icons/lien-externe.svg');
	width: 0.75rem;
	height: 0.75rem;
	display: block;
	top: -0.75rem;
	opacity: 0.5;
	right: -0.75rem;
}
.u-target-bk--dk::after{
	background-image: url('/images/icons/lien-externe-dk.svg');
}

/* =========== GENERIC ELEMENTS =========== */

/* Buttons */
.o-btn{
	background-image: -o-linear-gradient(top, #e24124 50%, #c7341a 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #e24124), color-stop(50%, #c7341a));
	background-image: linear-gradient(to bottom, #e24124 50%, #c7341a 50%);
	background-size: 100% 200%;
	min-width: 14rem;
	height: 4rem;
	padding: 0 1.25rem;
	background-position: center top;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	display: inline-block;
	line-height: 4rem;
	text-align: center;
  font-weight: 600;
	-webkit-box-shadow: 0 2px 4px 0 rgba(33,38,44,.1);
	        box-shadow: 0 2px 4px 0 rgba(33,38,44,.1);
	cursor: pointer;
	color: #fff;
	margin: 1.5rem 2rem 0 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.o-btn--fade{
	background-image: -o-linear-gradient(bottom, #323F49 50%, #212A31 50%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #323F49), color-stop(50%, #212A31));
	background-image: linear-gradient(to top, #323F49 50%, #212A31 50%);
}
.o-btn--fff{
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, #c7341a));
	background-image: -o-linear-gradient(top, #fff 50%, #c7341a 50%);
	background-image: linear-gradient(to bottom, #fff 50%, #c7341a 50%);
	color: #323F49;
}
.o-btn--fff:hover{
	color: #fff;
}
.o-btns{
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.o-btn--flex{
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	max-width: 15.5rem;
}
.o-btn:hover{
	background-position: center bottom;
}
.o-btn--ghost{
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff));
	background-image: -o-linear-gradient(top, transparent 50%, #fff 50%);
	background-image: linear-gradient(to bottom, transparent 50%, #fff 50%);
	color: #fff;
	border: 1px solid #fff;
}
.o-btn--ghost:hover{
	color: #323F49;
}
.o-btn:last-child{
	margin-right: 0;
}

/* Photos */
.o-photo{
  overflow: hidden;
}
.o-photo__img-cover{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========== NAVIGATION =========== */

/* Main Navigation */
.c-main-nav{
	height: 5rem;
	width: 100%;
	padding: 0 2rem 0 0;
	position: fixed;
  max-width: 120rem;
  margin: 0 auto;
	background: rgba(255,255,255,0.7);
	top: 0;
	z-index: 2;
	-webkit-transition: translate 0.5s;
	-o-transition: translate 0.5s;
	transition: translate 0.5s;
}
.c-main-nav__content{
	width: 100%;
	margin: 0 2rem 0 0;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-main-nav__logobk{
	height: 5rem;
	padding: 0.65rem 2.25rem 1rem 2rem;
	color: #fff;
	background: #e24124;
}
.c-main-nav__logo{
	height: 2.5rem;
	width: 12.5rem;
}
.c-main-nav__num{
	margin-left: 2rem;
	font-weight: 900;
	font-size: 1.25rem;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.c-main-nav__num:hover{
	color: #e24124;
}
.c-main-nav__logotxt{
	font-weight: 900;
	font-size: 1.5rem;
}
.c-main-nav__li{
	list-style-type: none;
	margin: 0 0 0 2rem;
}
.c-main-nav__a{
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	font-weight: 900;
	text-transform: uppercase;
}
.c-main-nav__a.is-activated{
	color: #e24124;
}
.c-main-nav__a:hover{
	color: #e24124;
}

/*Menu button*/
.c-cross{
	width: 2.5rem;
  height: 2.5rem;
	cursor: pointer;
	position: relative;
	display: none;
}
.c-cross__bar1::before,
.c-cross__bar1::after,
.c-cross__bar3::before,
.c-cross__bar3:after{
  content: '';
  left: 0.5rem;
  top: 0.5rem;
  position: absolute;
  width: 0.75rem;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  height: 0.2rem;
  background: #124f57;
}
.c-cross__bar1::after{
  right: 0.5rem;
  left: auto;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.c-cross__bar2{
  position: absolute;
  width: 1.5rem;
  top: 50%;
  left: 50%;
  height: 0.2rem;
  background: #124f57;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-cross__bar3::before, .c-cross__bar3:after{
  top: auto;
  bottom: 0.5rem;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.c-cross__bar3::after {
  right: 0.5rem;
  left: auto;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}
.c-cross--close{
	position: absolute;
	top: 1.5rem;
	right: 2rem;
}
.c-cross--close .c-cross__bar1:before{
  left: 0.6rem;
	top: 0.55rem;
  width: 0.9rem;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}
.c-cross--close .c-cross__bar1:after{
  right: 0.6rem;
  width: 0.9rem;
	top: 0.55rem;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.c-cross--close .c-cross__bar2 {
  width: 0.2rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-cross--close .c-cross__bar3:before{
  left: 0.6rem;
	bottom: 0.55rem;
  width: 0.9rem;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.c-cross--close .c-cross__bar3:after{
  right: 0.6rem;
  width: 0.9rem;
	bottom: 0.55rem;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

/*Hidden nav*/
.c-hiddenmenu{
	opacity: 0;
	display: none;
	background: #fff;
	width: 20rem;
	height: 100vh;
	-webkit-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	        transform: translateX(100%);
	-webkit-transition: all 0.7s, opacity 0s 0.8s;
	-o-transition: all 0.7s, opacity 0s 0.8s;
	transition: all 0.7s, opacity 0s 0.8s;
	position: fixed;
	-webkit-box-shadow: 0 1px 1rem rgba(0,0,0,0.2);
	        box-shadow: 0 1px 1rem rgba(0,0,0,0.2);
	right: 0;
	top: 0;
	z-index: 10;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.c-hiddenmenu.has-appeared{
	opacity: 1;
	-webkit-transition: all 0.7s, opacity 0s;
	-o-transition: all 0.7s, opacity 0s;
	transition: all 0.7s, opacity 0s;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.c-closemenu{
	z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
	background: rgba(0,0,0,0.2);
	opacity: 0;
  height: 100%;
	-webkit-transition: opacity 0.7s, -webkit-transform 0s 0.8s;
	transition: opacity 0.7s, -webkit-transform 0s 0.8s;
	-o-transition: transform 0s 0.8s, opacity 0.7s;
	transition: transform 0s 0.8s, opacity 0.7s;
	transition: transform 0s 0.8s, opacity 0.7s, -webkit-transform 0s 0.8s;
	-webkit-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	        transform: translateX(100%);
}
.c-closemenu.has-appeared{
	opacity: 1;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
	-webkit-transition: opacity 0.7s, -webkit-transform 0s;
	transition: opacity 0.7s, -webkit-transform 0s;
	-o-transition: transform 0s, opacity 0.7s;
	transition: transform 0s, opacity 0.7s;
	transition: transform 0s, opacity 0.7s, -webkit-transform 0s;
}
.c-hiddenmenu__list{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

@media all and (max-width: 1400px){
	.c-main-nav__li{
		font-size: 1rem;
		margin-left: 1.5rem;
	}
}
@media all and (max-width: 1200px){
	.c-main-nav__menu{
		display: none;
	}
	.c-cross{
		display: block;
	}
	.c-hiddenmenu{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.c-main-nav__content{
		margin: 0;
	}
	.c-hidden-nav__li{
		margin: 1rem 0 1rem 2rem;
	}
}
@media all and (max-width: 675px){
	.c-main-nav{
		padding: 0 1rem 0 0;
	}
}
@media all and (max-width: 520px){
	.c-main-nav__logobk{
		padding: 0.65rem 1.5rem 0.65rem 0.65rem;
	}
	.c-main-nav__logotxt{
		font-size: 1.3rem;
	}
	.c-main-nav__num{
		margin-left: 1.3rem;
		font-size: 1.15rem;
	}
}
@media all and (max-width: 440px){
	.c-main-nav__num{
		display: none;
	}
}
/*Bouton Scroll*/
.c-scroll-btn{
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background-image: -o-linear-gradient(top, #e24124 50%, #212A31 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #e24124), color-stop(50%, #212A31));
	background-image: linear-gradient(to bottom, #e24124 50%, #212A31 50%);
	background-size: 100% 200%;
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	cursor: pointer;
	z-index: 4;
}
.c-scroll-btn:hover{
	background-position: center bottom;
}
.c-scroll-btn__icon{
	width: 0.75rem;
	height: 0.75rem;
}
.c-scroll-btn__path{
	fill: #fff;
}
.c-scroll-btn.has-appeared{
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* Footer */
.c-footer{
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.1);
	        box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.c-footer a{
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	line-height: 1.2;
	text-decoration: underline;
}
.c-footer a:hover{
	color: #e24124;
}
.c-footer__cities{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	color: #F2F5EA;
	background: #323F49;
	padding: 4rem;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.c-footer__city{
	font-size: 1rem;
	font-weight: 700;
	padding-right: 2rem;
	margin-bottom: 0.5rem;
	width: 14rem;
}
.c-footer__logobk{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	max-width: 30%;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	background: #e24124;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.c-footer__logo{
	height: 4rem;
	width: 20rem;
}
.c-footer__batinet{
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	margin: 0.5rem 0 0 0;
}
.c-footer__end{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	height: 5rem;
	text-align: center;
	background-color: #212A31;
	color: #f7f3e3;
	font-size: 1rem;
  font-weight: 700;
  padding: 0 2rem;
}
.c-footer__title{
	font-size: 1.5rem;
	margin-bottom: 2rem;
	min-width: 100%;
	color: #fff;
}
.c-footer__end p{
	margin: 1.5rem 2rem;
	line-height: 1.2;
}
@media all and (max-width: 1475px){
  .c-footer__end{
    padding: 0 4rem;
  }
}
@media all and (max-width: 1120px){
	.c-footer__end{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		height: auto;
		line-height: 2.5;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.c-footer__end p{
		margin: 1.5rem 0;
	}
	.c-footer__end .o-flexbox{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media all and (max-width: 730px){
	.c-footer__logobk{
		display: none;
	}
	.c-footer__cities{
		padding: 4rem 2rem;
	}
	.c-footer__city{
		padding-right: 1.5rem;
		min-width: 11.5rem;
	}
}
/* =========== COOKIES =========== */

.c-cks{
	z-index: 10;
	left: 0;
	right: 0;
	bottom: -30rem;
	height: auto;
	position: fixed;
	background-color: #fff;
	line-height: 1.4;
	opacity: 0;
	-webkit-transition: all 0.5s, opacity 0s 0.8s;
	-o-transition: all 0.5s, opacity 0s 0.8s;
	transition: all 0.5s, opacity 0s 0.8s;
 	-webkit-box-shadow: 1px 0 2rem rgba(0,0,0,0.25);
 	        box-shadow: 1px 0 2rem rgba(0,0,0,0.25);
}
.c-cks.has-appeared{
	-webkit-transform: translateY(-30rem);
	    -ms-transform: translateY(-30rem);
	        transform: translateY(-30rem);
	opacity: 1;
	-webkit-transition: all 1s, opacity 0s;
	-o-transition: all 1s, opacity 0s;
	transition: all 1s, opacity 0s;
}
.c-cks__txt{
	padding: 3rem 2rem;
	margin: auto 1rem;
	background: #ffffff;
}
.c-cks__h2{
	font-size: 1.8rem;
	max-width: 9rem;
	margin: 0 1rem;
}
.c-cks__p{
	margin: 1rem 0;
}
.c-cks__ps{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin: 0 4rem;
	max-width: 30rem;
}
.c-cks__btn{
	width: 12.75rem;
	margin: 1rem;
	display: block;
}
.c-cks__btn:last-child{
	margin: 1rem;
}
.c-dark-scr{
	z-index: 9;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	-webkit-transition: opacity 0.5s, -webkit-transform 0s 0.6s;
	transition: opacity 0.5s, -webkit-transform 0s 0.6s;
	-o-transition: opacity 0.5s, transform 0s 0.6s;
	transition: opacity 0.5s, transform 0s 0.6s;
	transition: opacity 0.5s, transform 0s 0.6s, -webkit-transform 0s 0.6s;
	background: rgba(0,0,0,0.5);
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
}
.c-dark-scr.has-appeared{
	opacity: 1;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
	-webkit-transition: opacity 0.5s, -webkit-transform 0s;
	transition: opacity 0.5s, -webkit-transform 0s;
	-o-transition: opacity 0.5s, transform 0s;
	transition: opacity 0.5s, transform 0s;
	transition: opacity 0.5s, transform 0s, -webkit-transform 0s;
}

@media all and (max-width: 1030px){
	.c-cks__txt{
		padding: 2rem 0;
	}
	.c-cks__ps{
		margin: 0 2rem;
	}
}
@media all and (max-width: 800px){
	.c-cks__h2{
		display: none;
	}
}
@media all and (max-width: 700px){
	.c-cks__txt{
		text-align: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 0 auto;
		padding: 1.5rem 0 2.5rem 0;
	}
	.c-cks__ps{
		margin: 0 1.5rem 0.5rem 1.5rem;
	}
	.c-cks__btn{
		display: inline-block;
		font-size: 1rem;
		margin: 0.75rem 0.75rem 0 0.75rem;
		min-width: 12rem;
	}
	.c-cks__btn:last-child{
		margin: 0.75rem 0.75rem 0 0.75rem;
	}
}
@media all and (max-width: 410px){
	.c-cks__ps{
		margin: 0 1rem;
	}
	.c-cks__txt{
		padding: 1rem 0 2rem 0;
	}
}
@media all and (max-height: 479px){
	.c-cks__p{
		margin: 0.5rem 0;
	}
	.c-cks__btn{
		margin: 0.5rem 0.75rem 0 0.75rem;
	}
	.c-cks__btn:last-child{
		margin: 0.5rem 0.75rem 0 0.75rem;
	}
	.c-cks__txt{
		padding: 1rem 0 1.5rem 0;
	}
}

/* =========== HEADER =========== */

.c-header{
	min-height: 43.75rem;
	background-image: url('/images/photos/header.jpg');
	background-color: #212A31;
	background-size: cover;
	background-position: bottom;
	position: relative;
}
.c-header--alt{
	background-image: url('/images/photos/header-2.jpg');
}
.c-header__btn{
	margin: 1rem;
}
.c-header__btn:last-child{
	margin: 1rem;
}
.c-header__content{
	max-width: 47rem;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	color: white;
	text-align: center;
	padding: 3.5rem;
	background: rgba(0, 0, 0, 0.75);
}
.c-header p{
	margin: 1.5rem 0 2rem 0;
}
p.c-title{
	font-size: 2.25rem;
	line-height: 1.2;
	margin: 1rem 0;
	font-weight: 900;
}
.c-title:nth-child(2){
	font-size: 1.5rem;
	color: #DD614A;
	font-family: 'assistant';
	font-weight: 900;
}

@media all and (max-width: 470px){
	.c-header__content{
		padding: 3.5rem 1.5rem;
	}
	.c-title:nth-child(1){
		font-size: 2rem;
	}
}

/* =========== PARTIE DEVIS =========== */

.c-txt-pt{
	padding: 3rem;
	position: relative;
	margin-right: 2rem;
	max-width: 46rem;
}
.c-txt-pt--devis{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	margin-right: 0;
	padding-bottom: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.c-txt-pt--reversed{
	padding: 3rem;
	position: relative;
	margin-left: 2.5rem;
	max-width: 46rem;
}
.c-txt-pt__h2{
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
}
.c-txt-pt__photo{
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	max-width: 45rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin: 0 auto;
	background-color: #333333;
}
.c-txt-pt__li{
	max-width: 40rem;
	margin: 0 0 1rem 1.5rem;
	padding-left: 0.5rem;
	list-style-position: outside;
}

.c-legal{
	max-width: 80rem;
	margin: 0 auto;
	padding: 5rem 3rem;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.c-legal__txt{
	padding: 0 2rem;
	max-width: 44rem;
	min-width: 30rem;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.c-legal__h2{
	font-size: 1.6rem;
	margin: 3rem 0 1.5rem 0;
}
@media all and (max-width: 1120px){
	.c-legal{
		padding: 3.5rem 0;
	}
	.c-legal__txt{
		min-width: 20rem;
	}
}

/*Rappel gratuit*/
.c-rappel{
	margin-top: 2rem;
	padding: 2rem;
	max-width: 100%;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	border: 1px solid #212A31;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.c-rappel__input{
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	padding: 1rem;
	height: 4.875rem;
	color: #212A31;
	background: #F2F5EA;
	position: relative;
}
.c-btn--rappel{
	margin: 1rem 0 0 0;
	height: 4.875rem;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
}

/*Devis rapide*/
.c-devis{
	background: #F2F5EA;
	padding: 2rem;
	max-width: 40rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	position: relative;
	margin: 0 1rem 0 2rem;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
}
.c-devis__input{
	position: relative;
	background: transparent;
	border-bottom: 1px solid #212A31;
	padding: 0.5rem 0;
	margin-bottom: 2rem;
	max-width: 30rem;
	width: 90%;
}
.c-devis__input--txt{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-height: 10rem;
	resize: none;
}
.c-devis__h3{
	font-size: 1.75rem;
	margin-bottom: 2.5rem;
	position: relative;
}
.c-devis__h3:after{
	content: "";
	position: absolute;
	width: 30%;
	height: 1px;
	background: #212A31;
	bottom: -0.5rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.c-btn--devis{
	border: none;
	margin: 1.5rem 0 0 0;
	width: 19rem;
	max-width: none;
	height: 4.875rem;
}
.c-rappel__end{
	position: relative;
	min-width: 100%;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.g-recaptcha{
	margin-top: 1.5rem;
}
.g-recaptcha--rappel{
	margin-top: 1rem;
}
@media all and (max-width: 575px){
	.c-btn--rappel{
		width: 100%;
	}
	.c-rappel{
		padding: 1rem;
	}
}
@media all and (max-width: 400px){
	.g-recaptcha--rappel{
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
	.c-rappel__end{
		padding-top: 5.875rem;
	}
}
@media all and (max-width: 350px){
	.c-rappel{
		padding: 1rem 0.5rem;
	}
}
@media all and (max-width: 330px){
	.c-btn--devis{
		width: 90%;
	}
}


/* =========== SLIDESHOW =========== */

.c-slideshow{
	position: relative;
}
.c-slide{
	position: absolute;
	left: 0;
	opacity: 0;
	background: #ffffff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.c-slide.is-shown{
	opacity: 1;
}
.c-slideshow__bullets{
	position: absolute;
	bottom: 2rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 100%;
}
.c-slideshow__bullet{
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: #f7f3e3;
	margin: 0 0.75rem;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}
.c-slideshow__bullet.is-active{
	background: #e24124;
}
@media all and (max-width: 1250px){
	.c-slideshow{
		min-height: 25rem;
		width: 100%;
	}
}

/* =========== BANNER =========== */

.c-endsec__contact{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	margin: 1rem 2.5rem 0 0;
	font-weight: 700;
}
.c-endsec__path{
	fill: #244856;
}
.c-endsec__contact span{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.c-endsec__svg{
	width: 2rem;
	height: 2rem;
	margin-right: 0.75rem;
}
@media all and (max-width: 1275px){
	.c-banner__p{
		margin-right: 0;
		max-width: 50rem;
		width: 100%;
		text-align: center;
	}
}
@media all and (max-width: 400px){
	.c-endsec__contact{
		margin: 1rem 0 0 0;
	}
}

@media all and (max-width: 1250px){
	.c-wrapper{
		padding: 3rem 2rem 0 2rem;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.c-wrapper--reversed{
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	.c-txt-pt__photo{
		-ms-flex-item-align: auto;
		    -ms-grid-row-align: auto;
		    align-self: auto;
		-webkit-box-flex: 1;
		    -ms-flex: auto;
		        flex: auto;
		width: 100%;
		height: 20rem;
	}
	.c-txt-pt, .c-txt-pt--reversed{
		padding: 3rem 0;
		margin: 0;
	}
	.c-devis{
		padding: 4rem 0;
		-ms-flex-item-align: auto;
		    -ms-grid-row-align: auto;
		    align-self: auto;
		width: 100%;
		max-width: 45rem;
		margin: 0;
	}
	.c-txt-pt--devis{
		-ms-flex-item-align: auto;
		    -ms-grid-row-align: auto;
		    align-self: auto;
	}
	.c-banner{
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		text-align: center;
	}
	.c-banner__p{
		margin: 1.5rem 0 1rem 0;
		max-width: 40rem;
	}
	.c-assurance{
		max-width: 65rem;
		margin: 0 auto;
		padding-right: 15rem;
		padding-bottom: 0;
	}
	.c-arguments{
		padding: 2rem 0 4rem 0;
	}
}
@media all and (max-width: 1200px){
	.o-vid{
		position: absolute;
		right: 2.5rem;
	}
}
@media all and (max-width: 770px){
	.o-vid{
		position: relative;
		right: auto;
		top: auto;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		margin: 3rem auto;
	}
	.c-txt-pt, .c-txt-pt--reversed{
		padding: 3rem 2rem;
	}
	.c-wrapper{
		padding: 0;
	}
	.c-devis{
		max-width: 100%;
	}
}

/* =========== BANDEAU CTA =========== */
.c-cta{
	padding: 4.5rem;
	color: #fff;
}
.c-cta__content{
	max-width: 75rem;
	margin: 0 auto;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.c-cta__col{
	max-width: 40rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.c-cta__txtcol{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin-left: 4.5rem;
}
.c-cta__txtcol p:last-child{
	margin-bottom: 0;
}
.c-cta__title{
	font-size: 3rem;
	line-height: 1.2;
	font-weight: 900;
	margin-bottom: 2rem;
}
.u-el--tocome{
	display: none;
}
.u-el--togo{
	display: block;
}
@media all and (max-width: 1280px){
	.u-el--tocome{
		display: block;
	}
	.u-el--togo{
		display: none;
	}
}
@media all and (max-width: 900px){
	.c-cta__col{
		max-width: none;
	}
}
@media all and (max-width: 500px){
	.c-cta{
		padding: 3rem 2.5rem;
	}
	.c-cta__title{
		font-size: 2.25rem;
	}
}
@media all and (max-width: 390px){
	.c-cta{
		padding: 3rem 1.75rem;
	}
	.c-cta__btn{
		margin-right: 0;
	}
}

/* =========== FAQ =========== */
.c-accordions__btn{
	border-bottom: 2px solid #e24124;
	border-right: 2px solid #e24124;
	width: 0.75rem;
	height: 0.75rem;

	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition: -webkit-transform 0.6s;
	transition: -webkit-transform 0.6s;
	-o-transition: transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
}
.c-accordions__question{
	margin-bottom: 2rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 45rem;
	cursor: pointer;
}
.c-accordions__answer + .c-accordions__question{
	margin-top: 3rem;
}
.c-accordions__question.is-active .c-accordions__btn{
	-webkit-transform: rotate(225deg);
	    -ms-transform: rotate(225deg);
	        transform: rotate(225deg);
}
.c-accordions__answer{
	max-height: 0;
	border-bottom: 1px solid rgba(119, 122, 127, 0.5);
	max-width: 45rem;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
	overflow-y: hidden;
	text-align: left;
}
.c-accordions__answer p:last-child,
.c-accordions__answer .o-ul:last-child{
	margin-bottom: 3rem;
}
.c-accordions__question.is-active + .c-accordions__answer{
	max-height: 50rem;
}
.c-accordions__question.is-active + .c-accordions__answer--long{
	max-height: 70rem;
}
.c-accordions__h3{
	font-weight: 700;
	font-size: 1.2rem;
	max-width: 85%;
}
.c-accordions__h3--big{
	 font-size: 1.7rem;
 }
.c-accordions__column{
	width: 47.5%;
}
.c-accordions{
	margin-top: 4.5rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

@media all and (max-width: 940px){
	.c-accordions__h3--big{
		 font-size: 1.5rem;
	 }
}
@media all and (max-width: 800px){
	.c-accordions__column{
		width: 100%;
	}
	.c-accordions__column + .c-accordions__column{
		margin-top: 3rem;
	}
}
@media all and (max-width: 400px){
	.c-accordions__column{
		width: 100%;
	}
	.c-accordions__question.is-active + .c-accordions__answer{
		max-height: 60rem;
	}
	.c-accordions__question.is-active + .c-accordions__answer--long{
		max-height: 80rem;
	}
}

/* =========== PRESTATIONS =========== */

.c-domains__icon{
	height: 3rem;
	margin-bottom: 2rem;
}
.c-domains__path{
	fill: #2a3d45;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.c-domains__path--fff{
	fill: #fff;
}
.c-domains{
	padding-bottom: 3.5rem;
}
.c-domains__h2{
	margin: 3.5rem 0 2.5rem 0;
}
.c-domains__h3{
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 1.4rem;
}
.c-domains__content{
	margin: 0 auto;
	max-width: 100rem;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.c-domains__el{
	position: relative;
	margin: 1rem 2rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	max-width: 30rem;
	min-width: 20rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
			-ms-flex-direction: column;
					flex-direction: column;
	text-align: center;
	-webkit-box-align: center;
			-ms-flex-align: center;
					align-items: center;
}
@media all and (max-width: 570px){
	.c-domains__el{
		min-width: 15rem;
		margin: 1rem 0;
	}
	.c-domains__icon{
		height: 2.5rem;
	}
}
/* =========== 1ST PARAGRAPH =========== */
.c-intro{
	margin: 0 auto;
	padding: 8.5rem 0 6.5rem 0;
	position: relative;
}
.c-intro__flex{
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.c-intro__devis{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.c-intro__arg-txt{
	padding: 0 1.5rem;
}
.c-intro__h2--cntrd{
	text-align: center;
	margin: 0 auto 2.5rem auto;
}
.c-intro__txt{
	padding: 0 5.5rem;
	width: 55%;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.c-intro__txt p:last-child{
	margin-bottom: 0;
}

.c-arguments{
	margin: 3rem auto 0 auto;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.o-p--cntrd{
	text-align: center;
	margin: 0 auto 1.5rem auto;
}
.c-argument{
	width: 15rem;
	margin: 1rem;
	opacity: 1;
	text-align: center;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	font-weight: 700;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.c-argument__p{
	margin: 0.5rem 0;
	text-transform: uppercase;
	text-align: center;
}
.c-argument__icon{
	width: 4rem;
	margin-bottom: 0.5rem;
}
.c-argument__path{
	fill: #323F49;
}
.c-argument.js-notinview{
	opacity: 0;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.c-argument:nth-child(1){
	-webkit-transition-delay: 0.2s;
	     -o-transition-delay: 0.2s;
	        transition-delay: 0.2s;
}
.c-argument:nth-child(2){
	-webkit-transition-delay: 0.4s;
	     -o-transition-delay: 0.4s;
	        transition-delay: 0.4s;
}
.c-argument:nth-child(3){
	-webkit-transition-delay: 0.6s;
	     -o-transition-delay: 0.6s;
	        transition-delay: 0.6s;
}

@media all and (max-width: 1200px){
	.c-intro__titles{
		padding: 0 0 0 3.5rem;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.c-intro__h2, .c-intro__sub{
		width: auto;
	}
	.c-intro__txt{
		padding: 0 3.5rem;
	}
	.c-intro{
		padding: 7.5rem 0;
	}
}
@media all and (max-width: 990px){
	.c-intro__h2{
		font-size: 1.6rem;
	}
	.c-intro__sub{
		font-size: 1.1rem;
	}
}
@media all and (max-width: 900px){
	.c-intro__titles{
		margin-bottom: 0.5rem;
		padding: 0 2.5rem;
		width: 80%;
	}
	.c-intro__txt{
		padding: 0 2.5rem 2.5rem 2.5rem;
		width: 100%;
	}
	.c-intro__txt p{
		max-width: 100%;
	}
	.c-intro{
		padding: 4.5rem 0 0 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media all and (max-width: 550px){
	.c-intro__sub::before{
		left: -3.5rem;
		width: 2rem;
	}
	.c-intro__sub{
		margin-left: 3.5rem;
	}
	.c-intro__titles{
		width: 100%;
	}
}
@media all and (max-width: 380px){
	.c-intro__txt{
		padding: 0 1.75rem 2.5rem 1.75rem;
	}
	.c-intro__titles{
		padding: 0 1.75rem;
	}
}
