/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* =========== 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: #BF0000;
	scrollbar-color: #BF0000 #19323c;
}
::-webkit-scrollbar{
  background: #19323c;
	width: 1rem;
}
::-webkit-scrollbar-thumb{
  background-color: #BF0000;
}
::-moz-selection{
	background: #BF0000;
	color: #fff;
}
::selection{
	background: #BF0000;
	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: #19323c;
}
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;
}

/*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: #19323c;
}
b{
	color: #FF3333;
}
.u-vert{
	color: #FF3333;
}
.u-fff{
	color: #fff;
}
.u-bg--fff{
	background: #F6F8F2;
}
.u-bg--dk{
	background: #19323c;
}
.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{
	padding: 1rem 2rem;
	margin: 1rem 0.5rem;
	background-image: -o-linear-gradient(bottom, #004A80 50%, #BF0000 50%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #004A80), color-stop(50%, #BF0000));
	background-image: linear-gradient(to top, #004A80 50%, #BF0000 50%);
	background-size: 100% 200%;
	background-position: center top;
  width: 14rem;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	display: inline-block;
	line-height: 1.2;
	text-align: center;
  font-weight: 700;
	cursor: pointer;
	color: #fff;
}
.o-btn:hover{
	background-position: center bottom;
}

.o-btn--grey{
	background-image: -o-linear-gradient(bottom, #004A80 50%, #19323c 50%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #004A80), color-stop(50%, #19323c));
	background-image: linear-gradient(to top, #004A80 50%, #19323c 50%);
}
.o-btn--brown{
	background-image: -o-linear-gradient(bottom, #004A80 50%, #ffffff 50%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #004A80), color-stop(50%, #ffffff));
	background-image: linear-gradient(to top, #004A80 50%, #ffffff 50%);
	color: #232323;
}
.o-btn--lgrey{
	background-image: -o-linear-gradient(bottom, #004A80 50%, #F6F8F2 50%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #004A80), color-stop(50%, #F6F8F2));
	background-image: linear-gradient(to top, #004A80 50%, #F6F8F2 50%);
	color: #232323;
}
.o-btn--brown:hover,
.o-btn--lgrey:hover{
	color: #fff;
}

/* 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 2rem;
	color: #fff;
	background: #F6F8F2;
}
.c-main-nav__logo{
	height: 3.5rem;
	width: auto;
	/*margin-right: 1rem;*/
}
.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: #BF0000;
}
.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: #BF0000;
}
.c-main-nav__a:hover{
	color: #BF0000;
}

/*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: 1520px){
	.c-main-nav__li{
		font-size: 1rem;
		margin-left: 1.5rem;
	}
}
@media all and (max-width: 1410px){
	.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;
	}
	.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: 565px){
	.c-main-nav__num{
		display: none;
	}
}
/*Bouton Scroll*/
.c-scroll-btn{
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background-image: -o-linear-gradient(top, #BF0000 50%, #19323c 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #BF0000), color-stop(50%, #19323c));
	background-image: linear-gradient(to bottom, #BF0000 50%, #19323c 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: #BF0000;
}
.c-footer__cities{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	color: #e7ecef;
	background: #004A80;
	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: #F6F8F2;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.c-footer__logo{
	height: auto;
	width: 12rem;
}
.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: #19323c;
	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;
	padding: 1rem;
	margin: 1rem;
	display: block;
}
.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;
		padding: 1rem;
		font-size: 1rem;
		margin: 0.75rem 0.75rem 0 0.75rem;
		min-width: 12rem;
	}
}
@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__txt{
		padding: 1rem 0 1.5rem 0;
	}
}

/* =========== HEADER =========== */

.c-header{
	height: 43.75rem;
	background-image: url('/images/photos/header.jpg');
	background-color: #19323c;
	background-size: cover;
	background-position: bottom;
	position: relative;
}
.c-header--alt{
	background-image: url('/images/photos/header-2.jpg');
}
.c-header__btn{
	margin-top: 0;
}
.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: #FF3333;
	font-family: 'assistant';
	font-weight: 900;
}

@media all and (max-width: 470px){
	.c-header__content{
		padding: 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 #19323c;
	-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: #19323c;
	background: #e7ecef;
	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: #e7ecef;
	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 #19323c;
	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: #19323c;
	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;
	}
}

/* =========== PARTIE ASSURANCE =========== */
.c-vid{
	position: fixed;
	top: -100%;
	width: 100%;
	height: 100%;
	z-index: 30;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	-webkit-transition: all 0s 0.5s;
	-o-transition: all 0s 0.5s;
	transition: all 0s 0.5s; /*Delay for other elements to disappear first*/
}
#js-vidscreen{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background: rgba(0,0,0,0.65);
}
.c-vid.is-shown{
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
	-webkit-transition: all 0s;
	-o-transition: all 0s;
	transition: all 0s; /*No delay to show the appear animation of content*/
}
.c-vid.is-shown #js-vidscreen{
	opacity: 1;
}
.c-vid.is-shown .c-vidscreen__cross{
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
.c-vidscreen__cross{
	position: absolute;
	right: 2.5rem;
	top: 2.5rem;
	width: 4rem;
	height: 4rem;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	cursor: pointer;
	background-image: -o-linear-gradient(top, #BF0000 50%, #1E3C48 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #BF0000), color-stop(50%, #1E3C48));
	background-image: linear-gradient(to bottom, #BF0000 50%, #1E3C48 50%);
	background-size: 100% 200%;
	background-position: center top;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	border-radius: 50%;
	-webkit-box-shadow: 1px 1px 0.4rem rgba(0,0,0,0.5);
	        box-shadow: 1px 1px 0.4rem rgba(0,0,0,0.5);
}
.c-vidscreen__cross:hover{
	background-position: center bottom;
}
.c-vidscreen__cross img{
	width: 1rem;
	height: 1rem;
}
.c-vid__el{
	-webkit-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
	opacity: 0;
	width: auto;
	max-width: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	height: 80vh;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.c-vid.is-shown .c-vid__el{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
}
.o-vid{
	width: 7.5rem;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	height: 7.5rem;
	border-radius: 50%;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border: 2px solid #BF0000;
	border-left-color: transparent;
}
.o-vid::after{
	content: '';
	position: relative;
	width: 0;
  height: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-left: 0.25rem;
  border-top: 0.5rem solid transparent;
  border-left: 1rem solid #BF0000;
  border-bottom: 0.5rem solid transparent;
}
.o-vid:hover{
	border-color: #1F3942;
	border-left-color: transparent;
}
.o-vid:hover::after{
	border-left: 1rem solid #1F3942;
}
@media all and (max-height: 610px), all and (max-width: 1150px){
	.c-vidscreen__cross img{
		width: 0.75rem;
		height: 0.75rem;
	}
	.c-vidscreen__cross{
		right: 2rem;
		top: 2rem;
		width: 3rem;
		height: 3rem;
	}
}
@media all and (max-width: 350px){
	.o-vid{
		width: 4.5rem;
		height: 4.5rem;
		border: 2px solid #BF0000;
		border-left-color: transparent;
	}
	.c-domains__vid{
		margin: 2rem;
		width: 5rem;
		height: 5rem;
	}
	.o-vid::after{
	  border-top: 0.4rem solid transparent;
	  border-left: 0.8rem solid #BF0000;
	  border-bottom: 0.4rem solid transparent;
	}
	.o-vid:hover::after{
		border-left: 0.8rem solid #1F3942;
	}
	.c-vidscreen__cross img{
		width: 0.65rem;
		height: 0.65rem;
	}
	.c-vidscreen__cross{
		right: 1rem;
		top: 1rem;
		width: 2.5rem;
		height: 2.5rem;
	}
}
.c-assurance{
	max-width: 65rem;
	margin: 0 auto;
	padding-right: 15rem;
}
.c-assurance p, .c-assurance h2{
	max-width: 100%;
}
.c-assurance__icon{
	position: absolute;
	right: 10rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 15rem;
}
.c-arguments{
	margin: 0 auto;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.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;
	font-weight: 900;
	line-height: 1.2;
}
.c-argument__icon{
	width: 5rem;
}
.c-argument__path{
	fill: #BF0000;
}
.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;
}
.c-argument:nth-child(4){
	-webkit-transition-delay: 0.8s;
	     -o-transition-delay: 0.8s;
	        transition-delay: 0.8s;
}


/* =========== 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-shown{
	background: #BF0000;
}
@media all and (max-width: 1250px){
	.c-slideshow{
		min-height: 25rem;
		width: 100%;
	}
}

/* =========== BANNER =========== */

.c-endsec{
	padding: 2rem 4rem 4rem 4rem;
}
.c-banner{
	background: #19323c;
	color: #fff;
	padding: 2.5rem 1rem;
}
.c-banner__p{
	margin-right: 2rem;
	max-width: 30rem;
}
.c-promotion{
	border: 1px solid #1E3C48;
	padding: 2.5rem;
	width: 50rem;
	margin: 0 auto;
	text-align: center;
}
.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__path--fff{
	fill: #fff;
}
.c-endsec__contact span{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.c-endsec__svg{
	width: 2rem;
	height: 2rem;
	margin-right: 0.75rem;
}
.c-promobk{
	background: #004A80;
	padding: 4rem 0.5rem;
}
@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;
	}
}
.c-promotion__h2{
	margin-bottom: 1rem;
	margin-top: 0;
	font-size: 1.4rem;
	font-family: 'assistant';
	text-transform: uppercase;
	font-weight: 900;
	max-width: 32rem;
}
.c-promotion__content{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 4rem 1rem;
	background: #244856;
	color: #e7ecef;
}
.c-promotion__p{
	margin-top: 0;
	width: 70%;
}
.c-promotion-bk{
	padding-bottom: 0.5rem;
}
@media all and (max-width: 945px){
	.c-promotion{
		width: 100%;
	}
}
@media all and (max-width: 730px){
	.c-promotion{
		padding: 1.5rem;
	}
	.c-promotion__p{
		width: 90%;
	}
	.c-endsec{
		padding: 0 1rem 2rem 1rem;
	}
	.c-promotion__btn{
		margin: 0.5rem;
	}
}
@media all and (max-width: 440px){
	.c-promotion{
		padding: 1rem;
	}
	.c-promotion__p{
		width: 90%;
	}
	.c-endsec{
		padding: 2rem 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{
		max-height: 25rem;
	}
	.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%;
	}
}

/* =========== REALISATIONS =========== */
/* Undo existing styles */
.c-reas p, .c-reas__slideshow p{
	margin: 0;
}
.o-fullsec--bar .c-txt-pt__h2{
	margin-top: 2rem;
	color: #fff;
	font-size: 2.2rem;
}
/* --- Fullwidth section content */
.o-fullsec--bar{
	padding: 6rem 4%;
	max-width: 101rem;
	margin: 0 auto;
	position: relative;
}

/* Bar titled sec */
.o-fullsec--bar::before{
	width: 100%;
	display: block;
	content:'';
	height: 1px;
	background: #777a7f;
	opacity: 0.5;
}
.o-fullsec--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: #BF0000;
}
@media all and (max-width: 1200px){
	.o-fullsec, .o-fullsec--bar{
		padding: 5rem 4%;
	}
	.o-fullsec--bar::after{
		top: 5rem;
	}
}
.c-reas{
	gap: 1.5rem;
}
.c-reas:not(:first-child){
	margin-top: 3rem;
}
.c-rea{
	position: relative;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-width: 17rem;
	max-width: 25rem;
	height: 25rem;
	background: #fff;
	-webkit-box-shadow: 0.5rem 0.5rem 2rem rgba(0,0,0,0.2);
	        box-shadow: 0.5rem 0.5rem 2rem rgba(0,0,0,0.2);
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.c-rea .c-rea__txt, .c-rea .c-rea__loc{
	opacity: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.c-rea__loc{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #19323C;
	border-radius: 2.5rem;
	height: 3rem;
	color: #ffffff;
	padding: 0 2rem;
	min-width: 3rem;
	font-size: 1.2rem;
}
.c-rea__overlay{
	background-color: rgba(0,0,0,0);
	opacity: 1;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	width: 100%;
	height: 100%;
	position: absolute;
	-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;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	bottom: 0;
	color: #fff;
	padding: 2rem;
	font-weight: 700;
}
.c-rea:hover .c-rea__overlay{
	background-color: rgba(0,0,0,0.5);
}
.c-rea:hover .c-rea__txt, .c-rea:hover .c-rea__loc{
	opacity: 1;
}
.c-reas__slideshow{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition: opacity 0.5s, -webkit-transform 0s 0.6s;
	transition: opacity 0.5s, -webkit-transform 0s 0.6s;
	-o-transition: transform 0s 0.6s, opacity 0.5s;
	transition: transform 0s 0.6s, opacity 0.5s;
	transition: transform 0s 0.6s, opacity 0.5s, -webkit-transform 0s 0.6s;
	opacity: 0;
	z-index: 11;
	padding: 0 5.5rem 0 0;
}
.c-reas__slides{
	height: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.c-reas__slide{
	height: 100%;
	max-width: 100%;
	position: absolute;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.c-reas__slideshow.is-shown{
	-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: transform 0s, opacity 0.5s;
	transition: transform 0s, opacity 0.5s;
	transition: transform 0s, opacity 0.5s, -webkit-transform 0s;
	opacity: 1;
}
.c-reas__slide.is-shown{
	opacity: 1;
	position: relative;
	z-index: 1;
}
.c-reas__img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
	opacity: 1;
}
.c-reas__desc{
	position: absolute;
	bottom: 0;
	width: 100%;
	max-width: 100vw;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	padding: 2rem;
	z-index: 1;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.c-reas .c-rea__txt, .c-reas__slide .c-rea__txt{
	margin: 0 0 1rem 0;
	font-size: 1.2rem;
	line-height: 1.2;
	font-weight: 700;
}
.c-reas__close-scr{
	position: absolute;
	width: 100%;
	height: 100%;
	background: #3E3A39;
	opacity: 0.8;
	top: 0;
	left: 0;
}
.c-reas__slideshow::before{
	content: '';
	width: 5.5rem;
	position: absolute;
	background: #232323;
	height: 100%;
	top: 0;
	right: 0;
	z-index: 1;
}
.c-reas__ctrls{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	z-index: 1;
	position: absolute;
	right: 0;
	bottom: 0;
}
.c-reas__ctrl{
	padding: 0;
	width: 5.5rem;
	height: 7.25rem;
	background-color: #BF0000;
	cursor: pointer;
}
.c-reas__ctrl:hover .c-reas__icon{
	-webkit-transform: scale(1.5);
	    -ms-transform: scale(1.5);
	        transform: scale(1.5);
}
.c-reas__ctrl:last-of-type{
	background-color: #004A80;
}
.c-reas__cross{
	position: absolute;
	width: 1.5rem;
	top: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 1;
}
.c-reas__path{
	fill: #fff;
}
.c-reas__path--dk{
	fill: #fff;
}
.c-reas__icon{
	width: 1rem;
	height: 1rem;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

@media all and (max-width: 479px){
	.c-reas__ctrl{
		width: 3.5rem;
	}
	.c-reas__cross{
		right: 1rem;
	}
	.c-reas__slideshow::before{
		width: 3.5rem;
	}
	.c-reas__slideshow{
		padding: 0 3.5rem 0 0;
	}
}
@media all and (max-height: 350px){
	.c-reas__ctrl{
		height: 5.5rem;
	}
}

/* ========== AVIS =========== */
.c-avis{
	margin-top: 4rem;
	z-index: 1;
	position: relative;
}
.c-avis__wrap{
	position: relative;
	z-index: 1;
	width: auto;
	border-radius: 24px;
	padding: 50px 0 0 0;
	background: rgb(17, 17, 17);
}
div.DZBVr{
	font-weight: 900;
	font-size: 1.75rem;
}
.c-avis::before{
	content: '';
	background: #000;
	width: 15rem;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 50%;
	background: rgb(17, 17, 17);
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: 2;
}
div.bSFgYs{
	font-family: 'assistant';
}
@media all and (max-width: 1250px){
	.c-avis{
		margin: 0;
		padding-bottom: 4rem;
	}
	.c-avis::before{
		bottom: 4rem;
	}
}
