/*
* 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;
}

/* =========== 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)
is- & has- for applied temporary statuses

A class with an ending in the plural form refers to the container of said elements
*/

/* =========== BASE RULES & ATOMIC CSS ELEMENTS =========== */

/*Layout and background*/
::-webkit-scrollbar{
  background: #1D2B32;
	width: 1rem;
}
::-webkit-scrollbar-thumb{
  background-color: #395563;
}
::-moz-selection{
	background: #395563;
	color: #fff;
}
::selection{
	background: #395563;
	color: #fff;
}
html{
  scroll-behavior: smooth;
	background: #060606;
	scrollbar-color: #395563 #1D2B32;
}
.o-blocpage{
	min-height: 100vh;
  max-width: 120rem;
	padding-top: 5rem;
  margin: 0 auto;
	position: relative;
	font-family: 'open-sans';
	line-height: 1.6;
	font-size: 1rem;
	color: #777;
	background: #fff;
	overflow-x: hidden;
}
.o-section{
	position: relative;
	padding: 6rem 0;
}
.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;
}
.o-section-col{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
@media all and (max-width: 1385px){
	.o-blocpage{
		padding-top: 4rem;
	}
}
@media all and (max-height: 660px){
	.o-section{
		padding: 4rem 0;
	}
}
@media all and (max-height: 550px){
	.o-section{
		padding: 2.5rem 0;
	}
}

/*Typos*/
@font-face{
    font-family: 'open-sans';
    src: url('/fonts/open-sans/OpenSans-Regular.eot');
    src: url('/fonts/open-sans/OpenSans-Regular?#iefix') format('embedded-closetype'),
         url('/fonts/open-sans/OpenSans-Regular.woff2') format('woff2'),
         url('/fonts/open-sans/OpenSans-Regular.woff') format('woff'),
         url('/fonts/open-sans/OpenSans-Regular.ttf') format('truetype'),
         url('/fonts/open-sans/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
    font-weight: 400;
}
@font-face{
    font-family: 'shadowlight';
    src: url('/fonts/shadowlight/ShadowsIntoLightTwo-Regular.eot');
    src: url('/fonts/shadowlight/ShadowsIntoLightTwo-Regular?#iefix') format('embedded-closetype'),
         url('/fonts/shadowlight/ShadowsIntoLightTwo-Regular.woff2') format('woff2'),
         url('/fonts/shadowlight/ShadowsIntoLightTwo-Regular.woff') format('woff'),
         url('/fonts/shadowlight/ShadowsIntoLightTwo-Regular.ttf') format('truetype'),
         url('/fonts/shadowlight/ShadowsIntoLightTwo-Regular.svg#ShadowsIntoLightTwo-Regular') format('svg');
    font-weight: 400;
}
@font-face{
    font-family: 'open-sans';
    src: url('/fonts/open-sans/OpenSans-Bold.eot');
    src: url('/fonts/open-sans/OpenSans-Bold?#iefix') format('embedded-closetype'),
         url('/fonts/open-sans/OpenSans-Bold.woff2') format('woff2'),
         url('/fonts/open-sans/OpenSans-Bold.woff') format('woff'),
         url('/fonts/open-sans/OpenSans-Bold.ttf') format('truetype'),
         url('/fonts/open-sans/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
    font-weight: 700;
}

p{
	margin: 0 0 1.5rem 0;
	max-width: 55rem;
}
p:last-child, .o-p--nomar{
	margin-bottom: 0;
}
b{
	color: #395563;
}
.u-nowrap{
	white-space: nowrap;
}
.o-ctrd{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1.5rem;
}
.o-ul{
	margin: 1.5rem 0 1.5rem 1.5rem;
}
.o-ul__li{
	margin-bottom: 0.5rem;
}
.o-ul__li:last-child{
	margin-bottom: 0;
}
.o-a{
	font-weight: 700;
	text-decoration: underline;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.o-a:hover{
	color: #395563;
}
h1, h2, h3{
	color: #333;
	font-weight: 700;
	line-height: 1.2;
}
.o-h3{
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
	font-weight: 700;
}
.u-gb{
	color: #395563;
}
.u-fff{
	color: #fff;
}

/*Backgrounds*/
.u-bg--lg{
	background: #f2f1ec;
}
.u-bg--g{
	background-color: #0e0e0e;
}
.u-bg--dkg{
	background-color: #060606;
}

/* =========== GENERIC ELEMENTS =========== */

/* Buttons */
.o-btn{
	width: 14rem;
	height: 3.5rem;
	background-image: -o-linear-gradient(top, #395563 50%, #1D2B32 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #395563), color-stop(50%, #1D2B32));
	background-image: linear-gradient(to bottom, #395563 50%, #1D2B32 50%);
	background-size: 100% 200%;
	background-position: center top;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	display: inline-block;
	line-height: 3.5rem;
	text-align: center;
  font-family: 'shadowlight';
	font-size: 1.2rem;
	-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;
	border-radius: 0.5rem;
	color: #fff;
	margin: 1.5rem 2rem 0 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.o-btn--alone{
	margin: 2rem 0;
}
.o-btn:hover{
	background-position: center bottom;
	color: #fff;
}
.o-btn--ghost{
	background-image: -o-linear-gradient(top, transparent 50%, #1D2B32 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #1D2B32));
	background-image: linear-gradient(to bottom, transparent 50%, #1D2B32 50%);
	color: #777;
	border: 1px solid #777;
}
.o-btn--fghost{
	background-image: -o-linear-gradient(top, transparent 50%, #1D2B32 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #1D2B32));
	background-image: linear-gradient(to bottom, transparent 50%, #1D2B32 50%);
	color: #f2f1ec;
	border: 1px solid #f2f1ec;
}
.o-btn--ghost:hover, .o-btn--fghost:hover{
	border: 1px solid #1D2B32;
}


/* Equivalent SEO pour système de background cover*/
.o-photo{
  overflow: hidden;
	position: relative;
	background: #0e0e0e;
}
.o-photo__cover{
  width: 100%;
  height: 100%;
	position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========== NAVIGATION =========== */

/*Cookies Pop-up */
.c-cookies{
	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-cookies.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-cookies__txt{
	padding: 3rem 2rem;
	margin: auto 1rem;
	background: #ffffff;
}
.c-cookies__h2{
	font-size: 1.7rem;
	max-width: 9rem;
	margin: 0 1rem;
}
.c-cookies__p{
	margin: 1rem 0;
}
.c-cookies__ps{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin: 0 4rem;
	max-width: 30rem;
}
.c-cookies__btn{
	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-cookies__txt{
		padding: 2rem 0;
	}
	.c-cookies__ps{
		margin: 0 2rem;
	}
}
@media all and (max-width: 800px){
	.c-cookies__h2{
		display: none;
	}
}
@media all and (max-width: 700px){
	.c-cookies__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-cookies__ps{
		margin: 0 1.5rem 0.5rem 1.5rem;
	}
	.c-cookies__btn{
		display: inline-block;
		font-size: 1rem;
		margin: 0.75rem 0.75rem 0 0.75rem;
		min-width: 12rem;
	}
}
@media all and (max-width: 410px){
	.c-cookies__ps{
		margin: 0 1rem;
	}
	.c-cookies__txt{
		padding: 1rem 0 2rem 0;
	}
}
@media all and (max-height: 479px){
	.c-cookies__p{
		margin: 0.5rem 0;
	}
	.c-cookies__btn{
		margin: 0.5rem 0.75rem 0 0.75rem;
	}
	.c-cookies__txt{
		padding: 1rem 0 1.5rem 0;
	}
}

/*Navigation*/
.c-nav{
	position: fixed;
	top: 0;
	z-index: 9;
	background: #fff;
	width: 100%;
	-webkit-box-shadow: 1px 0 0.2rem rgba(0,0,0,0.2);
	        box-shadow: 1px 0 0.2rem rgba(0,0,0,0.2);
}
.c-nav__content{
	max-width: 65rem; /*78rem avant retrait page*/
	margin: 0 auto;
	height: 5rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 0 2rem;
}
.c-nav__logo{
	height: 4rem;
}
.c-num__icon{
	height: 1.5rem;
	margin-right: 0.5rem;
	display: block;
}
.c-num__path{
	fill: #777;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.c-nav__a{
	margin: 0 1px;
	position: relative;
	font-weight: 700;
	text-transform: uppercase;
	color: #395563;
	font-size: 0.8rem;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.c-nav__a--ong{
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	background-image: -o-linear-gradient(top, transparent 50%, #395563 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #395563));
	background-image: linear-gradient(to bottom, transparent 50%, #395563 50%);
	background-size: 100% 200%;
	background-position: center top;
}
.c-nav__a--ong:hover, .c-nav__a.c-nav__a--active{
	color: #fff;
	background-position: center bottom;
}
.c-nav__num{
	font-size: 1rem;
	margin: 0 2.5rem 0 0;
	color: #777;
	font-weight: 700;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.c-nav__rss{
	margin-left: 0.5rem;
}
.c-nav__rs{
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 1.5rem;
	margin: 0 0.5rem 0.35rem 0.5rem;
	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
	        box-shadow: 0 2px 3px rgba(0,0,0,0.4);
	background-image: -o-linear-gradient(top, transparent 50%, #395563 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #395563));
	background-image: linear-gradient(to bottom, transparent 50%, #395563 50%);
	background-size: 100% 200%;
	background-position: center top;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.c-nav__rs:hover{
	background-position: center bottom;
}
.c-nav__path{
	fill: #395563;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.c-nav__rs:hover .c-nav__path{
	fill: #fff;
}
.c-nav__icon{
	width: 1rem;
	height: 1rem;
}
.c-nav__icon--bg{
	margin: 0.1rem 0 0 0.1rem;
	width: 1.25rem;
	height: 1.25rem;
}
.c-nav__menu{
	display: inline-block;
}
.c-nav__num:hover{
	color: #395563;
}
.c-nav__num:hover .c-num__path{
	fill: #395563;
}
.c-nav__a:last-child{
	margin-right: 0;
}
.c-menu-btn{
	width: 2.4rem;
  height: 2.4rem;
	right: 1.5rem;
	top: 0.8rem;
	cursor: pointer;
	position: absolute;
	z-index: 6;
	display: none;
}
.c-menu-btn__bar1::before,
.c-menu-btn__bar1::after,
.c-menu-btn__bar3::before,
.c-menu-btn__bar3:after{
  content: '';
  left: 25%;
  top: 25%;
  position: absolute;
  width: 27.5%;
	-webkit-transform-origin: left bottom;
	    -ms-transform-origin: left bottom;
	        transform-origin: left bottom;
  height: 10%;
  background: #395563;
	-webkit-transition: top 0.3s, -webkit-transform 0.3s;
	transition: top 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, top 0.3s;
	transition: transform 0.3s, top 0.3s;
	transition: transform 0.3s, top 0.3s, -webkit-transform 0.3s;
}
.c-menu-btn__bar1::after{
  right: 25%;
  left: auto;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.c-menu-btn__bar2{
  position: absolute;
  width: 51%;
  top: 50%;
  left: 50%;
  height: 10%;
  background: #395563;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
	-webkit-transition: width 0.3s 0.6s, -webkit-transform 0.3s 0.3s;
	transition: width 0.3s 0.6s, -webkit-transform 0.3s 0.3s;
	-o-transition: transform 0.3s 0.3s, width 0.3s 0.6s;
	transition: transform 0.3s 0.3s, width 0.3s 0.6s;
	transition: transform 0.3s 0.3s, width 0.3s 0.6s, -webkit-transform 0.3s 0.3s;
}
.c-menu-btn__bar3::before, .c-menu-btn__bar3:after{
  top: auto;
  bottom: 25%;
	-webkit-transform-origin: left top;
	    -ms-transform-origin: left top;
	        transform-origin: left top;
}
.c-menu-btn__bar3::after {
  right: 25%;
  left: auto;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}
.c-menu-btn.is-switched .c-menu-btn__bar1:before{
  left: 27.5%;
	top: 25%;
  width: 27.5%;
  -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;
	-webkit-transition: width 0.3s 0.3s, top 0.3s 0.3s, left 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	transition: width 0.3s 0.3s, top 0.3s 0.3s, left 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	-o-transition: transform 0.3s 0.3s, width 0.3s 0.3s, top 0.3s 0.3s, left 0.3s 0.3s;
	transition: transform 0.3s 0.3s, width 0.3s 0.3s, top 0.3s 0.3s, left 0.3s 0.3s;
	transition: transform 0.3s 0.3s, width 0.3s 0.3s, top 0.3s 0.3s, left 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.c-menu-btn.is-switched .c-menu-btn__bar1:after{
  right: 27.5%;
  width: 27.5%;
	top: 25%;
  -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;
	-webkit-transition: width 0.3s 0.3s, top 0.3s 0.3s, right 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	transition: width 0.3s 0.3s, top 0.3s 0.3s, right 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	-o-transition: transform 0.3s 0.3s, width 0.3s 0.3s, top 0.3s 0.3s, right 0.3s 0.3s;
	transition: transform 0.3s 0.3s, width 0.3s 0.3s, top 0.3s 0.3s, right 0.3s 0.3s;
	transition: transform 0.3s 0.3s, width 0.3s 0.3s, top 0.3s 0.3s, right 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.c-menu-btn.is-switched .c-menu-btn__bar2 {
  width: 10%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
	-webkit-transition: width 0.5s, -webkit-transform 0.3s 0.3s;
	transition: width 0.5s, -webkit-transform 0.3s 0.3s;
	-o-transition: transform 0.3s 0.3s, width 0.5s;
	transition: transform 0.3s 0.3s, width 0.5s;
	transition: transform 0.3s 0.3s, width 0.5s, -webkit-transform 0.3s 0.3s;
}
.c-menu-btn.is-switched .c-menu-btn__bar3:before{
  left: 27.5%;
	bottom: 25%;
  width: 27.5%;
  -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;
	-webkit-transition: width 0.3s 0.3s, bottom 0.3s 0.3s, left 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	transition: width 0.3s 0.3s, bottom 0.3s 0.3s, left 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	-o-transition: transform 0.3s 0.3s, width 0.3s 0.3s, bottom 0.3s 0.3s, left 0.3s 0.3s;
	transition: transform 0.3s 0.3s, width 0.3s 0.3s, bottom 0.3s 0.3s, left 0.3s 0.3s;
	transition: transform 0.3s 0.3s, width 0.3s 0.3s, bottom 0.3s 0.3s, left 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.c-menu-btn.is-switched .c-menu-btn__bar3:after{
  right: 27.5%;
  width: 27.5%;
	bottom: 25%;
  -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;
	-webkit-transition: width 0.3s 0.3s, right 0.3s 0.3s, bottom 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	transition: width 0.3s 0.3s, right 0.3s 0.3s, bottom 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	-o-transition: transform 0.3s 0.3s, width 0.3s 0.3s, right 0.3s 0.3s, bottom 0.3s 0.3s;
	transition: transform 0.3s 0.3s, width 0.3s 0.3s, right 0.3s 0.3s, bottom 0.3s 0.3s;
	transition: transform 0.3s 0.3s, width 0.3s 0.3s, right 0.3s 0.3s, bottom 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.c-menu{
	position: fixed;
	display: none;
	top: 4rem;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 5;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: left;
	-webkit-transition: all 0.75s;
	-o-transition: all 0.75s;
	transition: all 0.75s;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-box-shadow: -1px 0 0.4rem rgba(0,0,0,0.2);
	        box-shadow: -1px 0 0.4rem rgba(0,0,0,0.2);
}
.c-menu-scr{
	z-index: 4;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
}
.c-menu-scr.has-appeared{
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.c-menu.has-appeared{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
.c-menu__content{
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	position: relative;
	z-index: 2;
}
.c-menu__column{
	margin: 2rem 1rem;
}
.c-menu__column:first-child{
	margin-right: 4rem;
}
.c-menu__column + .c-menu__column{
	text-align: right;
}
@media all and (max-width: 1024px){
	.c-nav__menu{
		display: none;
	}
	.c-menu{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.c-menu-btn{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.c-nav__content{
		height: 4rem;
		padding: 0 5rem 0 1.5rem;
	}
	.c-nav__logo{
		height: 3rem;
	}
	.c-nav__num{
		margin: 0 1rem 0 0;
	}
	.c-nav__a{
		margin: 0.5rem 0;
		width: 20rem;
		display: block;
		line-height: 1.2;
		border-bottom: 1px solid #ccc;
	}
	.c-nav__a:first-child{
		margin-top: 0;
	}
}
@media all and (max-width: 835px){
	.c-nav__a{
		width: 15rem;
	}
}
@media all and (max-width: 620px){
	.c-nav__a{
		width: 12.5rem;
	}
	.c-menu__column:first-child{
		margin-right: 1rem;
	}
}
@media all and (max-width: 500px){
	.c-nav__content{
		height: 4rem;
		padding: 0 3.5rem 0 1rem;
	}
	.c-nav__num{
		font-size: 0.95rem;
		margin: 0 0.5rem 0 0;
	}
	.c-num__icon{
		height: 1.25rem;
	}
	.c-menu-btn{
		right: 0.75rem;
	}
	.c-nav__rs{
		height: 2rem;
		width: 2rem;
	}
	.c-nav__a{
		width: 9rem;
	}
	.c-menu__column{
		margin: 2rem 0.75rem;
	}
}
@media all and (max-width: 415px){
	.c-nav__rss{
		display: none;
	}
	.c-nav__a{
		width: 100%;
	}
	.c-menu__column{
		margin: 2rem 0.75rem 0 0.75rem;
		width: 100%;
	}
	.c-menu__column + .c-menu__column{
		text-align: left;
		margin: 0 0.75rem 2rem 0.75rem;
	}
}

/* =========== FOOTER =========== */

.c-endpart__encart{
	background: #395563;
	padding: 0 2rem;
	color: #fff;
	font-family: "shadowlight";
	font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 2rem;
	height: 4rem;
	line-height: 4rem;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.c-endpart__encart::before{
	content: '';
	width: 0;
	height: 0;
	border-right: 0.5rem solid #1D2B32;
	border-bottom: 1rem solid #1D2B32;
	border-top: 1rem solid transparent;
	border-left: 0.5rem solid transparent;
	position: absolute;
	left: -1rem;
	top: 0;
}
.c-endpart__txt{
	padding-right: 4rem;
	text-align: center;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	max-width: 40rem;
}
.c-endpart__btns{
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 30rem;
	margin: 2rem auto 0 auto;
}
.c-endpart__btns .o-btn{
	margin: 1rem 0 0 0;
}
.c-endpart__logo{
	width: 16rem;
	margin: 0 auto 2rem auto;
	opacity: 0.8;
}
.c-endpart{
	max-width: 84rem;
	margin: 0 auto;
	padding: 5rem 2rem 4rem 2rem;
	position: relative;
	width: 100%;
}
.c-fb-page{
	width: 31.25rem;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	padding-bottom: 0.75rem;
	max-height: 31.25rem;
}
/*Footer*/
.c-footer{
	margin: 0 auto;
	bottom: 0;
	width: 100%;
	max-width: 120rem;
	font-size: 0.9rem;
	z-index: 1;
	color: #f0f5f9;
}
.c-footer__content{
	padding: 2.5rem 2rem;
	width: 100%;
	max-width: 84rem;
	font-weight: 400;
	margin: 0 auto;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.c-footer__p{
	margin: 0;
	text-align: center;
	color: #777;
}
.c-footer__a{
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	color: #fff;
}
.c-footer__a:hover{
	color: #395563;
}

@media all and (max-width: 1495px){
	.c-footer__content{
		padding: 2.5rem 6.5rem 2.5rem 2rem;
	}
}
@media all and (max-width: 1100px){
	.c-fb-page{
		width: 25rem;
		padding-bottom: 2.5rem;
	}
	.c-endpart{
		padding: 5rem 2rem 3.5rem 2rem;
	}
}
@media all and (max-width: 995px){
	.c-endpart__btns{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 1.5rem auto 0 auto;
	}
	.c-fb-page{
		padding-bottom: 0;
		-ms-flex-item-align: auto;
		    -ms-grid-row-align: auto;
		    align-self: auto;
	}
	.c-endpart{
		padding: 5rem 2rem 4.5rem 2rem;
	}
}
@media all and (max-width: 930px){
	.c-footer__content{
		padding: 2.5rem 1.5rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.c-footer__p:first-child{
		margin-bottom: 1rem;
	}
}
@media all and (max-width: 785px){
	.c-endpart{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.c-endpart__txt{
		padding-right: 0;
		padding-bottom: 4rem;
	}
	.c-fb-page{
		width: 100%;
		max-width: 31.25rem;
	}
}
@media all and (max-width: 630px){
	.c-footer__content{
		text-align: left;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media all and (max-width: 530px){
	.c-footer__bar{
		display: none;
	}
	.c-footer__a{
		text-align: left;
	}
	.c-footer__a--legal{
		display: block;
		width: auto;
		margin: 1rem 0 0.5rem 0;
	}
	.c-footer__a--legal2{
		display: block;
		width: auto;
		margin: 0.5rem 0 1rem 0;
	}
}
@media all and (max-width: 400px){

	.c-endpart__encart{
		padding: 0 1.25rem;
		font-size: 1.1rem;
		left: 1.5rem;
		height: 3.5rem;
		line-height: 3.5rem;
	}
	.c-endpart__encart::before{
		border-right: 0.375rem solid #1D2B32;
		border-bottom: 0.875rem solid #1D2B32;
		border-top: 0.875rem solid transparent;
		border-left: 0.375rem solid transparent;
		left: -0.75rem;
	}
	.c-endpart{
		padding: 5rem 1.5rem 4rem 1.5rem;
	}
}

/*Bouton Scroll*/
.c-scroll-btn{
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background-image: -o-linear-gradient(top, #395563 50%, #1D2B32 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #395563), color-stop(50%, #1D2B32));
	background-image: linear-gradient(to bottom, #395563 50%, #1D2B32 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;
	background-position: center top;
}
.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);
}
@media all and (max-width: 350px){
	.c-scroll-btn{
		bottom: 1.5rem;
		right: 1.5rem;
	}
}

/* =========== HEADER =========== */

.o-header{
	min-height: 70vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: #323232;
}
.o-header--mini{
	min-height: 40vh;
}
.c-header--p404{
	background-image: url('/images/p404/header.jpg');
}
.c-header--cgv{
	background-image: url('/images/cgv/header.jpg');
}
.c-header--legal{
	background-image: url('/images/legal/header.jpg');
}
.c-header--at{
	background-image: url('/images/ateliers/header.jpg');
}
.c-header--bo{
	background-image: url('/images/bouchees/header.jpg');
}
.c-header--boi{
	background: -webkit-gradient(linear, right top, left top, from(rgba(0,0,0,0.4)), to(rgba(0,0,0,0.4))), url('/images/boissons/header.jpg');
	background: -o-linear-gradient(right, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/boissons/header.jpg');
	background: linear-gradient(to left, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/boissons/header.jpg');
	background-size: cover;
	background-position: center;
	background-color: #323232;
}
.c-header--pr{
	background-image: url('/images/prestations/header.jpg');
}
.c-header--fo{
	background: -webkit-gradient(linear, right top, left top, from(rgba(0,0,0,0.4)), to(rgba(0,0,0,0.4))), url('/images/food-truck/header.jpg');
	background: -o-linear-gradient(right, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/food-truck/header.jpg');
	background: linear-gradient(to left, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/food-truck/header.jpg');
	background-size: cover;
	background-position: center;
	background-color: #323232;
}
.c-header--co{
	background-image: url('/images/contact/header.jpg');
}

.o-header__logo{
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 20rem;
	opacity: 0;
	-webkit-transform: translate(-50%, 0%);
	    -ms-transform: translate(-50%, 0%);
	        transform: translate(-50%, 0%);
	-webkit-transition: opacity 0.45s, -webkit-transform 0s 0.5s;
	transition: opacity 0.45s, -webkit-transform 0s 0.5s;
	-o-transition: transform 0s 0.5s, opacity 0.45s;
	transition: transform 0s 0.5s, opacity 0.45s;
	transition: transform 0s 0.5s, opacity 0.45s, -webkit-transform 0s 0.5s;
}
.o-header__logo--anim{
	-webkit-animation: appear 0.5s 0.5s forwards;
	        animation: appear 0.5s 0.5s forwards;
}
@-webkit-keyframes appear {
	0%{
		opacity: 0;
		-webkit-transform: translate(-50%, 0%);
		        transform: translate(-50%, 0%);
	}
	100%{
		-webkit-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
		opacity: 1;
	}
}
@keyframes appear {
	0%{
		opacity: 0;
		-webkit-transform: translate(-50%, 0%);
		        transform: translate(-50%, 0%);
	}
	100%{
		-webkit-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
		opacity: 1;
	}
}
.o-header__logo.has-appeared{
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	opacity: 1;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.c-slideshow{
	position: relative;
	background: #323232;
	height: 70vh;
	min-height: 16rem;
}
.c-slideshow__screen{
	background: rgba(0,0,0,0.2);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	position: absolute;
}
.c-slideshow__slide{
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background-size: cover;
	background-image: url('/images/accueil/slide-1.jpg');
}
.c-slideshow__slide.is-shown{
	opacity: 1;
}
.c-slideshow__slide:nth-child(2){
	background-image: url('/images/accueil/slide-2.jpg');
}
.c-slideshow__slide:nth-child(3){
	background-image: url('/images/accueil/slide-3.jpg');
}
.c-slideshow__loader{
	width: 100%;
	height: 0.4rem;
	position: absolute;
	top: 0;
	z-index: 2;
	background-color: #395563;
}
.c-slideshow__load{
	width: 100%;
	height: 100%;
	max-width: 0;
	position: absolute;
	background-color: #060606;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
.is-loading{
	max-width: 100%;
	-webkit-transition: all 6.4s;
	-o-transition: all 6.4s;
	transition: all 6.4s;
	-webkit-transition-timing-function: linear;
	     -o-transition-timing-function: linear;
	        transition-timing-function: linear;
}
.c-slideshow__ctrl{
	position: absolute;
	z-index: 2;
	-webkit-transform: translateY(50%);
	    -ms-transform: translateY(50%);
	        transform: translateY(50%);
	bottom: 50%;
	width: 2.5rem;
	height: 4rem;
	background: rgba(0,0,0,0.5);
	cursor: pointer;
}
.c-slideshow__ctrl--left{
	left: 0;
	border-radius: 0 0.5rem 0.5rem 0;
	padding-right: 0.25rem;
}
.c-slideshow__ctrl--right{
	right: 0;
	border-radius: 0.5rem 0 0 0.5rem;
	padding-left: 0.25rem;
}
.c-slideshow__ctrl:hover .c-slideshow__icon{
	-webkit-transform: scale(1.25);
	    -ms-transform: scale(1.25);
	        transform: scale(1.25);
}
.c-slideshow__path{
	fill: #fff;
}
.c-slideshow__icon{
	width: 1rem;
	height: 1rem;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.c-slideshow__h1{
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 2.5rem;
	font-weight: 700;
}

@media all and (max-height: 550px), all and (max-width: 440px){
	.o-header__logo{
		width: 15rem;
	}
}
@media all and (max-height: 481px), all and (max-width: 340px){
	.o-header__logo{
		width: 12rem;
	}
}
@media all and (max-height: 458px){
	.o-header{
		min-height: 16rem;
	}
}

/* =========== GENERIC CONTENT =========== */

.o-h1, .o-h2{
	font-size: 1.75rem;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
.o-h2{
	font-size: 1.5rem;
	font-family: 'shadowlight';
	text-align: center;
}
.o-h2--pad{
	padding: 0 1.5rem;
}
.o-h2--wd{
	width: 100%;
}
.o-h1__sub{
	font-size: 1.4rem;
	margin-top: -1rem;
	margin-bottom: 2rem;
}
.o-intro{
	text-align: center;
	margin: 0 auto;
	max-width: 55rem;
	padding-bottom: 2.5rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
.o-separator{
	margin: 3rem auto;
	width: 4rem;
}
.o-h2--num{
	font-size: 1.3rem;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

@media all and (max-height: 550px){
	.o-h1{
		font-size: 1.5rem;
	}
}
@media all and (max-width: 479px){
	.o-h1{
		font-size: 1.5rem;
	}
	.o-intro{
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

/* =========== ATELIERS =========== */

.o-ateliers{
	max-width: 84rem;
	margin: 0 auto;
	padding: 0 2rem 8rem 2rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.o-atelier{
	max-width: 47.5%;
	margin: 1rem 0 2rem 0;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	width: 100%;
}
.o-atelier__img{
	min-height: 20rem;
	margin-bottom: 2rem;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
	        box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
}
@media all and (min-width: 1024px){
	.o-atelier.o-flexbox{
		max-width: none;
		justify-content: flex-start;
	}
	.o-atelier.o-flexbox .o-atelier__img{
		max-width: 47.5%;
		margin-bottom: 0;
		align-self: stretch;
	}
	.o-atelier.o-flexbox .o-atelier__txts{
		max-width: 40rem;
		padding-left: 4rem;
	}
}
.o-atelier.o-flexbox .o-atelier__img{
	flex: 1;
}
.o-atelier__h2{
	font-size: 1.2rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.o-atelier__txt{
	margin-bottom: 1rem;
}
.o-atelier__txt--prix{
	font-weight: 700;
	display: none;
}
.o-atelier__ul{
	list-style-position: outside;
	padding-left: 1.75rem;
	margin-bottom: 1rem;
}
.o-atelier__li{
	margin-bottom: 0.5rem;
	padding-left: 0.5rem;
}
@media all and (max-width: 1023px){
	.o-atelier{
		max-width: 40rem;
	}
	.o-ateliers{
		-ms-flex-pack: distribute;
		    justify-content: space-around;
	}
}
@media all and (max-width: 640px){
	.o-ateliers{
		padding: 0 0 5rem 0;
	}
	.o-atelier__txt, .o-atelier__ul, .o-atelier__h2{
		padding: 0 1.5rem;
	}
	.o-atelier__ul{
		padding-left: 2.75rem;
	}
}

/* =========== PRESTATIONS =========== */
/*Boissons*/
.c-carte__li{
	width: 100%;
	margin-bottom: 1.5rem;
	line-height: 1.4;
}
.c-carte__p{
	display: block;
	text-align: left;
	font-weight: 400;
	margin: 0.75rem 0;
	min-width: 100%;
}
.c-carte__li-title, .c-carte__li--simple{
	font-weight: 700;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.c-carte__li-title{
	min-width: 100%;
	font-weight: 700;
}
.c-carte__trait, .c-carte__trait--rgt{
	height: 1px;
	background: rgba(0,0,0,0.2);
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin: 0 2rem;
	min-width: 2rem;
}
.c-carte__trait--rgt{
	margin-right: 0;
}
.c-carte__li-title + .c-carte__p{
	margin-top: 0.2rem;
	margin-bottom: 0;
}
.c-carte__ul{
	list-style-type: none;
	margin: 1.5rem auto 2.5rem auto;
	text-align: left;
}
.c-carte__ul:last-child{
	margin-bottom: 0;
}
/*Prestations*/
.c-cocktails{
	padding: 2rem 0 5rem 0;
	max-width: 85rem;
	margin: 0 auto;
}
.c-cocktails.c-cocktails-nopad{
	padding-bottom: 0;
}
.c-cocktails--boi .c-cocktail{
	min-width: 19.5rem;
}
.c-cocktail{
	max-width: 40rem;
	min-width: 27.5rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin: 2rem 1rem;
	position: relative;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 0.2rem;
	padding: 4rem 2rem;
	text-align: center;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	font-size: 0.95rem;
	-webkit-transition: opacity 0.5s 0.25s, -webkit-transform 0.75s 0.25s;
	transition: opacity 0.5s 0.25s, -webkit-transform 0.75s 0.25s;
	-o-transition: transform 0.75s 0.25s, opacity 0.5s 0.25s;
	transition: transform 0.75s 0.25s, opacity 0.5s 0.25s;
	transition: transform 0.75s 0.25s, opacity 0.5s 0.25s, -webkit-transform 0.75s 0.25s;
	opacity: 1;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
.c-cocktail.is-hidden{
	opacity: 0;
	-webkit-transform: translateY(3rem);
	    -ms-transform: translateY(3rem);
	        transform: translateY(3rem);
}
.c-cocktail--spe{
	width: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: auto;
	        flex: auto;
	margin: 2rem auto;
	max-width: 50rem;
}
.c-cocktail__logo{
	width: 5rem;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.c-cocktail__h3{
	font-size: 1.2rem;
	min-width: 100%;
	margin-bottom: 1.5rem;
}
.c-cocktail__h4{
	font-family: 'shadowlight';
	font-size: 1.1rem;
	font-weight: 700;
	margin: 2rem 0 0.5rem 0;
	color: #395563;
}
.c-cocktail__sep{
	position: absolute;
	bottom: 3rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.c-cocktail__prix{
	font-weight: 700;
	margin: 2rem 0 4rem 0;
}
.c-cocktail__ul{
	list-style-type: none;
	margin-bottom: 2rem;
}
.c-cocktail__li{
	margin-bottom: 0.5rem;
	line-height: 1.3;
}
.c-cocktail__li:last-child{
	margin-bottom: 0;
}
.o-note{
	font-style: italic;
}
.c-btn--cocktail{
	margin-bottom: 4rem;
}
.c-service__h3{
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.c-service{
	max-width: 80rem;
	margin: 0 auto;
}
.c-service__col{
	padding: 2rem 3rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-width: 26rem;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
}
.c-service__slideshow{
	height: 25rem;
	width: 100%;
}
.o-slide{
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.o-slide.is-shown{
	opacity: 1;
}
.c-service__bullets{
	position: absolute;
	bottom: 1rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 100%;
}
.c-service__bullet{
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: #fff;
	margin: 0 0.75rem;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}
.c-service__bullet.is-active{
	background: #395563;
}
.c-service__quote{
	font-size: 1.7rem;
	margin-top: 6rem;
	font-family: 'shadowlight';
	color: #395563;
}
.c-service__quote--sig{
	margin-top: 0;
	font-size: 1.3rem;
	text-align: right;
}
@media all and (max-width: 1023px){
	.c-service__bullet{
		margin: 0 0.5rem;
	}
	.c-cocktail{
		min-width: 19.5rem;
	}
}
@media all and (max-width: 575px){
	.c-service__col--ss{
		padding-left: 0;
		padding-right: 0;
	}
}
@media all and (max-width: 420px){
	.c-service__col{
		padding: 2rem 1.5rem;
		min-width: 18rem;
	}
}

/* =========== FOOD TRUCK =========== */

.c-ft__slideshow{
	height: 30rem;
	width: 100%;
	max-width: 60rem;
	margin: 0 auto 5rem auto;
}
.c-cocktail--food{
	width: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: auto;
	        flex: auto;
	margin: 2rem auto 0 auto;
	padding-bottom: 6rem;
	max-width: 60rem;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.c-cocktail__col{
	min-width: 19rem;
	margin: 0 2rem 2rem 2rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

/* =========== BOUCHEES =========== */

.c-bouchees-pt{
	margin-bottom: 5rem;
}
.o-ul--bullets{
	list-style-type: none;
	margin: 0;
	max-width: 25rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.o-ul__title{
	margin: 0.75rem 0 0 0;
	color: #395563;
	font-weight: 700;
}
.o-ul--bullets + .o-ul--bullets{
	margin-left: 2rem;
}
.c-bouchees{
	margin: 2.5rem auto;
	padding-top: 2rem;
}
.c-bouchees__el{
	position: relative;
	margin: 1.5rem 0;
	font-weight: 700;
	padding-left: 1.75rem;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.2;
}
.c-bouchees__el:hover{
	color: #395563;
}
.c-bouchees__el:last-child{
	margin-bottom: 0;
}
.c-bouchees__el:before{
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 0;
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background: #777;
	margin: 0 0.75rem 0 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}
.c-bouchees__el.is-active:before{
	background: #0e0e0e;
}
.c-bouchees__el.is-active{
	color: #0e0e0e;
}
.c-bouchees__h2{
	font-size: 1.1rem;
	min-width: 100%;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}
.c-bouchees__col{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 0 2rem 2rem 2rem;
	max-width: 55rem;
}
.c-bouchees__col--ss{
	-webkit-box-flex: 1;
	    -ms-flex: auto;
	        flex: auto;
	max-width: 40rem;
	height: 25rem;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
}
.c-bouchees__slideshow{
	height: 100%;
	width: 100%;
}
@media all and (max-width: 1023px){
	.c-bouchees{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.c-bouchees__col{
		-webkit-box-flex: 1;
		    -ms-flex: auto;
		        flex: auto;
		-ms-flex-item-align: auto;
		    -ms-grid-row-align: auto;
		    align-self: auto;
		width: 100%;
		max-width: 45rem;
	}
}
@media all and (max-width: 675px){
	.c-bouchees__col{
		padding: 0 1.5rem 2rem 1.5rem;
	}
	.c-bouchees__col--ss{
		padding: 0 0 2rem 0;
	}
	.o-ul--bullets + .o-ul--bullets{
		margin-left: 1rem;
	}
	.c-bouchees__el{
		padding-left: 2rem;
	}
	.c-bouchees__el:before{
		margin: 0;
	}
}
@media all and (max-width: 375px){
	.c-bouchees__col{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.o-ul--bullets + .o-ul--bullets{
		margin-left: 0;
	}
}

/* =========== BOUCHEES =========== */

.c-form-col{
	position: relative;
	max-width: 50rem;
	min-width: 41rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 2.5rem;
}
.o-contacts{
	max-width: 85rem;
	padding-top: 4rem;
	margin: 0 auto;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.o-h2--contact{
	text-align: left;
}
.c-zone-col{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 2.5rem;
}
.c-zone__img{
	margin-bottom: 3rem;
	width: 100%;
	max-width: 35rem;
}
.c-form{
	width: 100%;
	padding-bottom: 2rem;
}
.c-form__label{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-width: 17rem;
	position: relative;
	margin: 0 2rem 2rem 0;
	display: block;
	color: #2e2e2e;
}
.c-form__label:nth-child(2n+1){
	margin-right: 0;
}
.c-form__label--bts{
	position: absolute;
	opacity: 0;
}
.c-form__inputs{
	width: 100%;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.c-form__input--bts{
	position: absolute;
}
.c-form__input::-webkit-input-placeholder, .c-form__textarea::-webkit-input-placeholder{
	color: #9FA2A5;
	font-size: 1.1rem;
}
.c-form__input::-moz-placeholder, .c-form__textarea::-moz-placeholder{
	color: #9FA2A5;
	font-size: 1.1rem;
}
.c-form__input:-ms-input-placeholder, .c-form__textarea:-ms-input-placeholder{
	color: #9FA2A5;
	font-size: 1.1rem;
}
.c-form__input::-ms-input-placeholder, .c-form__textarea::-ms-input-placeholder{
	color: #9FA2A5;
	font-size: 1.1rem;
}
.c-form__input::placeholder,
.c-form__textarea::placeholder{
	color: #9FA2A5;
	font-size: 1rem;
}
.c-form__input, .c-form__textarea{
	display: block;
	margin-top: 0.5rem;
	width: 100%;
	padding: 1rem 1.5rem;
	background: #f2f1ec;
}
.c-form__btn{
	width: 12rem;
	margin: 0;
}
.g-recaptcha{
	margin: 1.5rem 0;
}
.c-form__end{
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
}
.c-form__textarea{
	resize: none;
	min-height: 20rem;
	width: 100%;
}
.c-form__label--textarea{
	 width: 100%;
	 margin-bottom: 0;
}
.c-contacts__a{
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	font-weight: 700;
	color: #0e0e0e;
	display: inline-block;
}
.c-contacts__a:hover{
	color: #395563;
}
@media all and (max-width: 1080px){
	.o-contacts{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media all and (max-width: 660px){
	.c-form__label{
		-webkit-box-flex: 1;
		    -ms-flex: auto;
		        flex: auto;
		width: 100%;
		margin: 0 0 2rem 0;
	}
	.c-form-col{
		max-width: none;
		min-width: 0;
		padding: 0 1.5rem;
	}
	.c-zone-col{
		padding: 5rem 1.5rem 0 1.5rem;
	}
}

/* =========== LOCATION FOOD-TRUCKS =========== */
.o-fiche{
	overflow: hidden;
	border-radius: 0.2rem;
	max-width: 110rem;
	margin: 0 6.5rem 8rem 6.5rem;
	position: relative;
	border: 1px solid rgba(0,0,0,0.2);
}
.o-inline-a{
	font-weight: 700;
	text-decoration: underline;
}
.o-fiche__txt{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	width: 100%;
	min-height: 16.5rem;
}
.o-fiche__descs{
	min-width: 100%;
}
.o-fiche__desc{
	background: #f2f1ec;
	padding: 3.5rem;
	-webkit-box-flex: 2;
	    -ms-flex: 2;
	        flex: 2;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
}
.o-fiche__desc p:last-child{
	margin-bottom: 0;
}
.o-fiche__h3{
	color: #395563;
	font-size: 2.1rem;
	line-height: 1.2;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 1.5rem;
}
.o-fiche__subh{
	margin-bottom: 0.5rem;
	font-family: 'shadowlight';
	letter-spacing: 1px;
	font-size: 1.2rem;
}
.o-fiche__p{
	font-size: 1rem;
	line-height: 1.2;
}
.o-fiche__pricing{
	-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;
	padding: 3.5rem 2rem 4.5rem 2rem;
	background: #323232;
	color: #999999;
	position: relative;
	text-align: center;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.o-fiche__price{
	color: #ffffff;
	font-size: 2.35rem;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
}
.o-fiche__btn{
	position: absolute;
	bottom: 0;
	width: 100%;
	color: #fff;
	height: 3.5rem;
	left: 0;
	border-radius: 0.5rem 0.5rem 0 0;
}
.o-fiche__btn:hover{
	background-position: center bottom;
}
.o-fiche__caracs{
	padding: 3.5rem 3.5rem 1.5rem 3.5rem;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	background: #fff;
}
.o-fiche__carac{
	margin: 0 1.25rem 1.25rem 0;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	min-width: 16rem;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.o-fiche__icon{
	width: 2rem;
	margin-top: 0.2rem;
	margin-right: 1rem;
}
.o-fiche__caracp{
	line-height: 1.2;
	font-size: 1rem;
}
.o-fiche__title{
	width: 100%;
	font-family: 'shadowlight';
	font-size: 1.1rem;
	position: relative;
	margin: 0 0 0.5rem 0;
	letter-spacing: 1px;
	font-weight: 700;
	color: #395563;
}
.o-fiche__list{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	position: relative;
	font-size: 1rem;
	list-style-type: none;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.o-fiche__li{
	min-width: 14rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin: 0 0 0.35rem 0;
	line-height: 1.2;
}
.o-fiche__li:nth-child(1), .o-fiche__li:nth-child(3n){
	margin-right: 1rem;
}
.o-fiche__slides{
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-height: 40rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.o-fiche__vigs{
	height: 8rem;
	width: 100%;
	background: #0e0e0e;
	position: relative;
}
.o-slide{
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.o-slide.is-shown{
	opacity: 1;
}
.o-vig{
	margin: 0 0.75rem;
	width: 6rem;
	height: 4.5rem;
	border-radius: 0.75rem;
	cursor: pointer;
}
.o-photo__filter{
	min-width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
	position: absolute;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.o-vig.is-shown .o-photo__filter,
.o-vig:hover .o-photo__filter{
	opacity: 0;
}
.o-fiche__ctrl{
	position: absolute;
	width: 1rem;
	height: 1rem;
	padding: 1rem 1.2rem 1rem 1rem;
	border-radius: 0.5rem;
	background-image: -o-linear-gradient(top, #395563 50%, #1D2B32 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #395563), color-stop(50%, #1D2B32));
	background-image: linear-gradient(to bottom, #395563 50%, #1D2B32 50%);
	background-size: 100% 200%;
	background-position: center top;
	cursor: pointer;
	z-index: 2;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.o-fiche__ctrl:first-of-type{
	left: 1.5rem;
}
.o-fiche__ctrl:last-of-type{
	right: 1.5rem;
	padding: 1rem 1rem 1rem 1.2rem;
}
.o-fiche__ctrl path{
	fill: #fff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.o-fiche__ctrl:hover{
	background-position: center bottom;
}
.o-fiche__img{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	position: relative;
	width: 100%;
	background: #323232;
}
@media all and (max-width: 1600px){
	.o-fiche{
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		max-width: 80rem;
		margin: 0 auto 8rem auto;
	}
	.o-fiche__carac{
		width: 20rem;
		max-width: 40rem;
		-webkit-box-flex: 1;
		    -ms-flex: auto;
		        flex: auto;
	}
}
@media all and (max-width: 680px){
	.o-fiche__descs{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media all and (max-width: 680px) and (min-width: 360px){
	.o-fiche__pricing{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		padding: 2.5rem 3.5rem 5rem 3.5rem;
	}
	.o-fiche__pricing .o-fiche__p{
		text-align: right;
		margin: 0 0 0.75rem 0;
	}
	.o-fiche__pricing div{
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		margin-left: 1.5rem;
	}
}
@media all and (max-width: 550px){
	.o-fiche__slides{
		min-height: 30rem;
	}
}
@media all and (max-width: 575px){
	.o-fiche__vigs{
		height: 5rem;
	}
	.o-vig{
		width: 3rem;
		height: 3rem;
		margin: 0 0.5rem;
		border-radius: 0.25rem;
	}
	.o-fiche__ctrl{
		padding: 1.25rem 0.5rem 1.25rem 0.25rem;
		border-radius: 0 0.5rem 0.5rem 0;
		width: 0.85rem;
		height: 0.85rem;
	}
	.o-fiche__ctrl:first-of-type{
		left: 0;
	}
	.o-fiche__ctrl:last-of-type{
		border-radius: 0.5rem 0 0 0.5rem;
		right: 0;
		padding: 1.25rem 0.25rem 1.25rem 0.5rem;
	}
}
@media all and (max-width: 479px){
	.o-fiche__pricing{
		padding: 2.5rem 1.5rem 5rem 1.5rem;
	}
	.o-fiche__caracs{
		padding: 3.5rem 1.5rem 1.5rem 1.5rem;
	}
	.o-fiche__desc{
		padding: 3.5rem 1.5rem;
	}
	.o-fiche__carac{
		width: 100%;
		min-width: 0;
	}
	.o-fiche__li{
		min-width: 100%;
	}
}

/* =========== Disclaimer =========== */
.c-disclaimer-bk{
	width: 100vw;
	min-height: 100vh;
	background-color: rgba(0,0,0,0.75);
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	overflow-y: scroll;
}
.c-disclaimer__logo{
	width: 7.5rem;
	height: 7.5rem;
	margin: 0 auto 1.5rem auto;
}
.c-disclaimer{
	padding: 4rem;
	background: #fff;
	border-radius: 1rem;
	max-width: 45rem;
	text-align: center;
}
.c-disclaimer .o-btn{
	margin-right: 0;
}
.c-disclaimer__h2{
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}
@media all and (max-width: 726px), all and (max-height: 640px){
	.c-disclaimer-bk{
		position: absolute;
		padding: 5rem 1rem;
		height: 100%;
		align-items: flex-start;
	}
}
@media all and (max-width: 500px){
	.c-disclaimer{
		padding: 3rem 2rem;
	}
}
