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

/* RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* fix internet explorer pr les elements html5 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

a,
a:hover,
a:focus {
	text-decoration:none;
	color:#000;
}

:focus,
button:focus {
	outline: 0;
}

ol, ul {
	list-style: none;
}

body {
	color:#000;
	line-height:1;
    font-family: 'Oswald', sans-serif;
	/* font-weight: 300; */
	background-color: #fff;
    font-size: 0.750em; /* 12px */
}

/* LAYOUT */

#preload {
	background: url(../../img/layout/preload.gif) center center no-repeat #f8aea9;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10001;
}

.loaded #preload {
	display: none;
}

#principale {
	width: 100%;
	margin: 0px auto;
	position: relative;
}

#principale.nav-active {
	padding-top: 106px;
}

#header_content {
    border-bottom: 2px solid #000;
    margin-bottom: 15px;
}

/* NAV BAR */

/* Icon 1 */

#bar_menu {
  width: 24px;
  height: 16px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10001;
  margin: 38px 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#bar_menu strong {
    font-size: 1.250em; /* 15px */
    text-transform: uppercase;
    opacity: 0;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
    position: absolute;
    top: 0px;
    left: 30px;
}

#bar_menu:not(.open):hover strong {
    opacity: 1;
}

#bar_menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#bar_menu span:nth-child(1) {
  top: 0px;
}

#bar_menu span:nth-child(2),#bar_menu span:nth-child(3) {
  top: 7px;
}

#bar_menu span:nth-child(4) {
  top: 14px;
}

#bar_menu.open span:nth-child(1) {
  top: 7px;
  width: 0%;
  left: 50%;
}

#bar_menu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#bar_menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#bar_menu.open span:nth-child(4) {
  top: 7px;
  width: 0%;
  left: 50%;
}

/* OVERLAY */

.overlay {
    position: fixed;
	z-index: 10000;
    background-color: rgba(240, 170, 169, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
}
.nav-active {
    opacity: 1;
    visibility: visible;
    height: 100%;
/*    max-height: 340px;*/
}
.overlay div {
    display: block;
    position: relative;
    top: 89px; 
    left: 0;
    text-align: center;
}

.overlay ul:first-child {
    border-top: 2px solid #fff;
}

.overlay ul:first-child li {
    display: block;
    opacity: 0;
    transform: translate3d(0,-10vh,0);
    transition-delay: 1s;
    transition: transform .31s cubic-bezier(.165,.84,.44,1),opacity .21s ease;
}

.overlay ul:first-child li a {
    color: #fff;
    text-decoration: none;
    font-size: 5.083em; /* 61px */
    text-transform: uppercase;
}

/*.overlay.nav-active ul:first-child > li > a.opened::before,
.overlay.nav-active ul:first-child > li > a.opened::after {
    -webkit-transition: all 0.8s cubic-bezier(0.51,0.76,0.51,1.13);
    -o-transition: all 0.8s cubic-bezier(0.51,0.76,0.51,1.13);
    transition: all 0.8s cubic-bezier(0.51,0.76,0.51,1.13);
}

.overlay.nav-active ul:first-child > li > a.opened::before {
    left: 50%;
	margin-left: -500px;
}

.overlay.nav-active ul:first-child > li > a.opened::after {
    right: 50%;
	margin-right: -500px;
}

.overlay.nav-active ul:first-child > li > a::before,
.overlay.nav-active ul:first-child > li > a::after {
    content: "";
    display: block;
    height: 2px;
    background: #fff;
    position: absolute;
    width: 280px;
    top: 30px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.overlay.nav-active ul:first-child > li > a::before {
	left: -1300px;
}

.overlay.nav-active ul:first-child > li > a::after {
	right: -1300px;
}*/

.overlay ul:first-child li ul {
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 0.328em; /* 20px */
	display: none;
}

.overlay ul:last-of-type {
    text-align: center;
    opacity: 0;
    transform: translate3d(0,-10vh,0);
    transition-delay: 1s;
    transition: transform .31s cubic-bezier(.165,.84,.44,1),opacity .21s ease;
}

.overlay ul:last-of-type li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 1.167em; /* 14px */
    border-right: 1px solid #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.overlay ul:last-of-type li:last-of-type {
    border: none;
}

.overlay ul li a:hover {
    color: #004937 !important;
}

/* NAV-ACTIVE */

.nav-active #header {
    position: fixed;
    top: 0px;
    left: 0px;
    color: #fff;
	width: 100%;
	z-index: 100;
}

.nav-active #header a,
.nav-active #header .fa-search {
    color: #fff;
}

.nav-active #header a:hover {
    color: #004937;
}

.nav-active #header_content {
	border-bottom: 0px;
}

.nav-active #bar_menu span {
    background-color: #fff;
}

.nav-active #bar_menu:hover span {
    background-color: #004937;
}

.nav-active #titre_header a {
    background-image: url(../../img/layout/coeur-menu.svg);
	width: 80px;
}

.nav-active #language {
    border-color: #fff;
}

.nav-active ul:first-child li,
.nav-active ul:last-of-type {
    opacity: 1;
    transform: translateZ(0);
    transition: transform .91s cubic-bezier(.165,.84,.44,1),opacity .91s ease;
}

.nav-active ul:first-child li:nth-child(1) {
    transition-delay: 0.3s;
}

.nav-active ul:first-child li:nth-child(2) {
    transition-delay: 0.4s;
}

.nav-active ul:first-child li:nth-child(3) {
    transition-delay: 0.5s;
}

.nav-active ul:first-child li:nth-child(4) {
    transition-delay: 0.6s;
}

.nav-active ul:first-child li:nth-child(5) {
    transition-delay: 0.7s;
}

.nav-active ul:first-child li:nth-child(6) {
    transition-delay: 0.8s;
}

.nav-active ul:first-child li:nth-child(7) {
    transition-delay: 0.9s;
}

.nav-active ul:last-of-type {
    transition-delay: 1s;
}

/* TITRE HEADER */

#titre_header,
#titre_footer {
	text-align: center;
	z-index: 10001;
}

#titre_header a,
#titre_footer a {
    display: inline-block;
    text-indent: -9999px;
	height: 100%;
	background: url(../../img/layout/logo-very-french-gangsters.svg) center center no-repeat;
	width: 380px;
}

#titre_header a {
	height: 89px;
}

#header .col-2:last-of-type {
    text-align: right;
    padding-right: 0px;
	z-index: 10001;
}

#header .col-2:last-of-type i,
#language {
    display:  inline-block;
    margin-top: 30px;
    margin-bottom: 30px;
}

#language {
    border-right: 2px solid #000;
    line-height: 29px;
    font-size: 1.250em; /* 15px */
    padding-right: 10px;
    margin-right: 10px;
}

#language li {
    display: inline-block;
    text-transform: uppercase;
}

#language li::after {
    content: '/';
    margin-left: 5px;
}

#language li:last-of-type::after {
    content: '';
    margin-left: 0px;
}

#header .col-sm-2:last-of-type i {
    font-size: 1.667em; /* 20px */
}

#header .fa-search:hover {
    cursor: pointer;
}

/* PAGE */

#page {
	padding-bottom: 30px;
}

#page p {
	font-size: 1.333em; /* 16px */
	text-align: justify;
	line-height: 1.5em;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 15px;
}

#breadcrumb {
    margin-bottom: 35px;
	margin-left: -15px;
}

#breadcrumb li {
    display: inline-block;
    color: #9f9e9e;
    font-size: 1.250em; /* 15px */
    text-transform: uppercase;
	font-weight: 300;
}

#breadcrumb li::after {
    content: '/';
    padding-left: 5px;
}

#breadcrumb li:last-of-type::after {
  content: '';
}

#breadcrumb a {
    color: #9f9e9e;
}

#page h1 {
    font-size: 2.917em; /* 35px */
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    margin-bottom: 35px;
}

/* INSTA */

#colorbox, #cboxOverlay, #cboxWrapper {
	z-index: 10001;
}

#cboxOverlay {
	background: rgba(0, 0, 0, 0.8);
}
#cboxTopLeft,
#cboxTopRight,
#cboxBottomLeft,
#cboxBottomRight,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxTopCenter,
#cboxBottomCenter {
	display: none;
}

#instagram {
	margin-top: 50px;
	margin-bottom: 20px;
}

#instagram,
#instagram .img-fluid {
    width: 100%;
}

#titre_insta {
    line-height: 90px;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.083em; /* 25px */
}

#titre_insta a {
	border-top: 1px solid #e1e1e1;
	display: block;
}

.insta {
    padding-left: 0;
    padding-right: 0;
	position: relative;
}

.insta a {
	display: block;
	background-position: center center;
    background-size: cover;
	background-repeat: no-repeat;
}

.insta img {
	opacity: 0;
}

#instagram .liked {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 1.333em; /* 16px */
	padding: 5px;
	border-radius: 5px;
	color: #fff;
	background-color: #ed4956;
	display: inline-block;
}

/* FOOTER */

#footer {
}

#titre_footer {
	z-index: 0;
	vertical-align: top;
}

#titre_footer a {
    background-image: url(../../img/layout/logo-footer-very-french-gangsters.svg);
    background-position: center left;
	width: 100%;
	height: 113px;
    background-size: contain;
}

#footer .col-md-4,
#footer .col-md-8 {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 140px;
    font-size: 1.167em; /* 14px */
    text-transform: uppercase;
    line-height: 1.25em;
}

#footer .col-md-8 strong {
    display: block;
    margin-bottom: 15px;
}

#footer .col-md-8 li {
    padding-bottom: 15px;
}

#footer .col-md-8 li:last-of-type {
    padding-bottom: 0;
}

#footer .col-md-8 i {
    margin-right: 10px;
}

#credits {
    padding-bottom: 30px;
}

/* SEARCH OVERLAY */

/* Search Overlay */

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform input[type=submit] {
  position: absolute;
  width: 100px;
  height: 100%;
  background-color: transparent;
  border: 0;
  right: 50%;
  margin-right: -400px;
  top: 0;
}

#mk-fullscreen-searchform:focus{
  outline: none;
  border: none;
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform .fullscreen-search-button {
  font-size: 25px;
  position: absolute;
  right: 0px;
  width: 25px;
  top: 30px;
  color: rgba(255, 255, 255, .2);
  cursor: pointer;
  border: 0px;
  background: transparent;
}

.fullscreen-search-icon:hover,
.fullscreen-search-icon:focus{
  border: none;
  outline: none;
  color: #fff !important;
}

#mk-fullscreen-searchform {
  position: relative;
  vertical-align: middle;
  display: inline-block;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
   color: #fff;
   opacity: 0.7;
}
::-moz-placeholder { /* Firefox 19+ */
   color: #fff;
   opacity: 0.7;
}
:-ms-input-placeholder { /* IE 10+ */
   color: #fff;
   opacity: 0.7;
}
:-moz-placeholder { /* Firefox 18- */
   color: #fff;
   opacity: 0.7;
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform #mk-fullscreen-search-input {
  width: 800px;
  background-color: transparent;
  -webkit-box-shadow: 0 3px 0 0 rgba(255, 255, 255, .2);
  -moz-box-shadow: 0 3px 0 0 rgba(255, 255, 255, .2);
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, .2);
  border: 0;
  text-align: left;
  font-size: 5.417em; /* 65px */
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper #mk-fullscreen-searchform #mk-fullscreen-search-input:focus{
  border: none;
  outline: none;
}

.mk-fullscreen-search-overlay.mk-fullscreen-search-overlay-show {
  visibility: visible;
  opacity: 1;
}

.mk-fullscreen-search-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(240, 170, 169, 0.8);
  text-align: center;
  z-index: 10000;
}

.mk-fullscreen-search-overlay {
  z-index: 10001;
}

.mk-fullscreen-search-overlay .mk-fullscreen-close {
  position: absolute;
  left: 0px;
  top: 38px;
  width: 24px;
  height: 16px;
  z-index: 10002;
}

.mk-fullscreen-search-overlay .mk-fullscreen-close span {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
    top: 7px;
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
}

.mk-fullscreen-search-overlay .mk-fullscreen-close span + span {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mk-fullscreen-search-overlay .mk-fullscreen-close:hover span {
	background-color: #004937;
}

.mk-fullscreen-search-overlay.mk-fullscreen-search-overlay-show #mk-fullscreen-search-wrapper {
  opacity: 1;
  visibility: visible;
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

#mk-fullscreen-search-input:focus{
  box-shadow: 0px 3px 0px 0px rgba(255, 255, 255, 1) !important;
}

/* COLORBOX */

#cboxCurrent {
	display: none !important;
}

/* BXSLIDER */

.bx-wrapper {
    margin-bottom: 40px;
    border: none;
    box-shadow: none;
}

.bx-wrapper .bx-controls-direction a {
	height: 35px;
	width: 18px;
	margin-top: -18px;
}

.bx-wrapper .bx-prev,
.bx-wrapper .bx-next {
	background: url(../../img/layout/prev.png) center center no-repeat;
}

.bx-wrapper .bx-next {
	background-image: url(../../img/layout/next.png);
}

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-next:hover {
	background-position: center center;
}

.edit {
	position: absolute;
	right: 0px;
	top: 0px;
	background-color: #03c;
	padding: 5px;
	color: #fff;
	opacity: 0.5;
	border-radius: 5px;
}

.edit:hover {
	opacity: 1;
	color:  #fff;
}

.noty_bar {
	text-align: center;
}