@font-face {
  font-family: 'Berthold Akzidenz Grotesk BE Regular';
  font-style: normal;
  font-weight: normal;
  src:url('../fonts/Berthold-akzidenz-grotesk-be-regular.woff') format('woff');
}

@font-face {
  font-family: 'Berthold Akzidenz Grotesk BE Medium Condensed';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Berthold-akzidenz-grotesk-be-medium-condensed.woff') format('woff');
}

@font-face {
  font-family: 'Berthold Akzidenz Grotesk BE Bold';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Berthold-akzidenz-grotesk-be-bold.woff') format('woff');
}

@font-face {
  font-family: 'Berthold Akzidenz Grotesk BE Bold Condensed';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Akzidenz-grotesk-be-bold-condensed.woff') format('woff');
}

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap');

*, *::after, *::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{  overflow-x: hidden !important;}

body {
  margin: 0;
  background-color: #231F20;
  padding: 0;
  font-family: 'source sans Pro', sans-serif;
  color: #fff;
  overflow-x: hidden !important;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, span {
  display: block;
}

button {
  border: none;
  background: none;
  outline: none;
}

h2{
  font-family: 'Berthold Akzidenz Grotesk BE Bold Condensed';
  color: #E75A25;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 30px;
}

p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 100;
  line-height: 26px;
}

h2, h3, p, hr {
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #E75A25;
  margin-top: 40px;
  width: 100%;
  max-width: 200px;
  padding: 10px 20px;
  overflow: hidden;
  position: relative;
  height: 40px;
}

/* ---------- Header ---------- */
header {
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: #231F20;
}

header .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .logo {
  padding: 30px 0;
  height: 100%;
  z-index: 1;
}

header .logo img {
  height: 100%;
  z-index: 999;
}

header .toggle {
  z-index: 1;
  width: 50px;
  height: 10px;
  position: relative;
  cursor: pointer;
  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;
}

header .toggle span {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 2px;
  background: #fff;
}

header .toggle span:last-child {
  top: auto;
  bottom: 0;
}

header .menu {
  color: #595959;
  width: 300px;
  height: 100vh;
  background: #F2EDE7;
  border-left: 1px solid #8b8b8b;
  position: fixed;
  top: 0;
  right: -320px;
  z-index: 9999999;
  padding: 40px;
}

header .menu>li:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #24262c;
}

header .menu p {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

header .menu .toggle_close {
  width: 50px;
  height: 10px;
  position: relative;
  top: -1px;
  cursor: pointer;
  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;
}

header .menu .toggle_close span {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 2px;
  background: #111;
  -webkit-transform: translateY(4px) rotate(135deg);
  -ms-transform: translateY(4px) rotate(135deg);
  transform: translateY(4px) rotate(135deg);
}

header .menu .toggle_close span:last-child {
  top: auto;
  bottom: 0;
  -webkit-transform: translateY(-4px) rotate(45deg);
  -ms-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
}

header .menu>li {
  font-size: 17px;
  margin-bottom: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ededed;
}

header .menu>li:last-child {
  border: none;
}

header .menu>li a img {
  width: 10px;
}

header .menu::before {
  content: "";
  width: 100%;
  background-image: url(../img/coq.png);
  height: 390px;
  position: absolute;
  left: 0;
  transform: translateX(30px);
  bottom: 0;
  background-size: cover;
}

.header_subchildren {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 25px;
  background: #fff;
  padding: 30px;
  color: #24262C;
  font-family: 'HK Grotesk';
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.social {
  position: absolute;
  padding: 0px 0px 15px 5px;
  bottom: 30px;
}

.social li{
  margin-top: 20px;
  margin-left: 20px;
  display: inline-block;
}

.title{
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 10;
}

.title h1{
  font-size: 90px;
  text-transform: uppercase;
  line-height: 80px;
  letter-spacing: 4px;
}

/* ---------- Section ---------- */
.m-section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #231F20;
}

.m-section__inner {
  position: relative;
}

.start{
  margin-top: -100px;
  height: 100vh;
}

.fond-1, .fond-2 {
  width: 100%;
  height: 80vh;
  background-color: #231F20;
  position: relative;
  top: 0;
}

.couverture{
  background-position: center;
  background-size: cover;
  position: absolute;
  margin: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(../img/burger.png);
}

.res{
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000001;
}

.res_number{
  color: #E75A25;
  -webkit-box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.1);
  box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 10px;
  width: 170px;
  background-color: #F2EDE7;
  text-align: center;
  font-size: 16px;
}

.gav-1, .gav-2{
  height: 490px;
  width: auto;
  position: absolute;
  z-index: 9;
  top:5rem;
  right: 0;
}

.cover-1, .cover-2{
  background-position: center;
  background-size: cover;
  position: relative;
  margin: 0;
  left: 0;
  height: 100%;
  background-repeat: no-repeat;
}

.cover-1{background-image: url(../img/equipe.jpg);}
.cover-2{background-image: url(../img/tartine.jpg);}

.partners h2{
  margin: auto;
  text-align: center;
  display: block;
}

.partners hr{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bloc{
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.bloc li{
  border: 1px solid #E75A25;
  height: 150px; /*200*/
  width: 150px; /*200*/
  margin: auto;
  float: left;
  display: inline-block
}

.bloc li img{
  margin: auto;
  height: 100%;
  padding: 20px;
}

/* ---------- Cursor ---------- */
.cursor {
	position: absolute;
	background-color:#E75A25;
	width: 7px;
	height: 7px;
	border-radius: 100%;
	user-select: none;
	pointer-events: none;
	z-index: 999999999;
}

.follower {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.3);
	width: 20px;
	height: 20px;
	border-radius: 100%;
	z-index: 1;
	transition: 0.6s cubic-bezier(0.8, -1.3, 0.3, 2.5) transform, 0.2s cubic-bezier(0.8, -0.3, 0.3, 1.5) opacity;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
}

.follower.active {
	opacity: 0.7;
	transform: scale(3);
}

/* ---------- Animations ---------- */
/* Slider */
.carousel{
  position: relative;
  top: -330px;
}

.slider {
  width: 555px;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  top: 5rem;
  z-index: 2;
}
.slider__wrapper {
  font-size: 0;
  padding: 0;
}
.slider__item {
  list-style: none;
  font-size: 0;
  display: inline-block;
  width: 555px;
  max-width: 100%;
}
.slider__image {
  width: 100%;
  height: 100%;
}
.slider__nav {
  position: relative;
  bottom: 25px;
  padding: 0;
  display: flex;
  text-align: center;
  justify-content: center;
}
.slider__button {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #E75A25;
}
.slider__button:hover {
  background: #454545;
}
.slider__link {
  color: #fff;
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
}

.slider__link--prev img, .slider__link--next img{width: 10px;}

.overlay {
  z-index: 999999999999999;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #F2EDE7;
  top: 0%;
  background-image: url(../img/preloader.jpg);
  background-size: cover;
}

.overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.body-content__rollig-text {
  white-space: nowrap;
  font-family: 'Berthold Akzidenz Grotesk BE Bold';
  position: absolute;
  top:73vh;
}

.body-content__rollig-text .rolling-text__text {
  font-size: 7.5vw;
  display: inline-block;  
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E75A25;
  color: transparent
}

.rolling-event{
  top:-40px;
  position: absolute;
}

/* ---------- Events ---------- */
.events{height: 35vh;}

.swiper-container {
  width: 300px !important;
  height: 300px !important;
  overflow: visible !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 70px !important;
  background-image: url(../img/arrow-prev.svg) !important;
  background-size: 20px 20px !important;
  top: -120px !important;
  border: 1px solid #E75A25;
  padding: 25px;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: -70px !important;
  background-image: url(../img/arrow-next.svg) !important;
  background-size: 20px 20px !important;
  top: 129px !important;
  border: 1px solid #E75A25;
  padding: 25px;
}

.swiper-pagination-current:before{content: "0"}
.swiper-pagination-total:before{content: "0"}
.swiper-slide img {width: 100%;height: 100%;}
.swiper-slide-active .title {color:#000;}
.swiper-button-next, .swiper-button-next{ position: relative !important;}

.img-hover {
  opacity: 0;
  position: absolute;
  background: #ff4c3c;
  height: 320px;
  width: 320px;
  transition: ease-out 0.2s;
}

.view-btn {
  background: #FFF;
  color: #ff4c3c;
}

.swiper-slide h2{
  text-transform: uppercase;
  font-size: 20px;
  margin: 0px;
  width: 100%;
  padding: 10px 0px;
  position: absolute;
  bottom: 125px;
  text-align: center;
  font-weight: 600;
  clear: both;
  color: #fff;
}

.swiper-slide:hover .img-hover {
  z-index: 10;
  opacity: 1;
  width: 100%;
  height:100%;
  background-color: rgb(231, 90, 37, 0.6);
}

.pop-up, .pop-up-2, .pop-up-3, .pop-up-4 {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  z-index: 999999999;
  background-color: rgba(0, 0, 0, 0.3);
}

.pop-up-container{
  height:7000px;
  width:100%;
  background:#000;
  opacity:.5;
  position:relative;
  z-index:-1;
  margin-top:-450px;
}

.pop-up span, .pop-up-2 span, .pop-up-3 span, .pop-up-4 span  {
    margin-left: 90%;
    color: #fff;
    position: absolute;
    font-size: 25px;
    height: 10px;
    width: 10px;
    display: inline-table;
    background: #E75A25;
    right: -7px;
    padding: 0px 10px 0px;
    border-radius: 50%;
    cursor: pointer;
    top: -15px;
}

.pop-up-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  max-width: 700px;
}

.pop-up-text img {
  width:100%;
}

/* ---------- Instagram feed ---------- */
#instafeed {
  width: 100%;
  height: 300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

#instafeed a {
  display: flex;
  align-items: center;
  position: relative;
  width: 50%;
  background: white;
}

#instafeed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  #instafeed a { width: 25%; }
}

.follow{
  right: 0;
  background-color: #F2EDE7;
  width: 100%;
  height: 300px;
  display: flex;
  background-image: url(../img/preloader.jpg);
  background-size: cover;
}

.ins{
  text-align: center;
  margin: auto;
  display: block;
}

.ins a{
  border: 1px solid #E75A25;
  padding: 5px;
  margin: 20px 0 20px 0;
  width: 100px;
  text-align: center;
  display: inline-block;
  color: #231F20;
  background-color: #F2EDE7;
}

.ins h3{
  font-family: 'Berthold Akzidenz Grotesk BE Medium Condensed';
  color: #E75A25;
  font-size: 36px;
  font-weight: 100;
}

.ins span{
  color: #231F20;
  font-weight: 600;
}

.colum{
  width: 100%;
  height: auto;
  margin: auto;
  padding: 0;
}

.feed{
  padding:0 !important
}

/* ---------- Footer ---------- */
footer{
  display: flow-root;
  padding: 120px 0;
}

footer h3{
  font-family: 'Berthold Akzidenz Grotesk BE Medium Condensed';
  color: #E75A25;
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: lighter;
  letter-spacing: 2px;
}

footer hr{
  margin:15px auto;
  display: block
}

footer ul li{
  text-align: center;
  font-weight: 300;
  line-height: 24px;
}

footer .col-md-4:nth-child(1) li:nth-child(1){
  margin-bottom: 10px;
}

.input-newsletter {
  margin: 0 auto;
  display: block;
  width: 230px;
  padding: 10px;
}

.input-field,
.input-btn--submit {
  vertical-align: top;
  height: 50px;
  border: 1px solid #E75A25;
  box-sizing: border-box;
  background: transparent;
}

.input-field {
  width: 160px;
}
.input-field::placeholder {
  text-transform: uppercase;
  padding-left: 20px;
  font-style: italic;
  letter-spacing: 1px;
}

.input-btn--submit {
  width: 50px;
  margin-left: -4px;
}

.input-btn--submit img {
  margin: auto;
}

.rs{
  display: flex;
  justify-content: center;
}

.rs li:nth-child(1){
  margin-top: 20px;
  margin-left: 0px;
}

.rs li{
  margin-top: 20px;
  margin-left: 20px;
}

/*.btn-carte{display: none}*/

.horaire {
  padding: 0px 0px 100px 0px;
}

.horaire p{
  margin: auto;
  display: block;
  padding: 20px 0 60px 0px;
  text-align: center;
  font-size: 20px;
}

/* ---------- Mentions légales ---------- */
.mentions{
  padding: 50px 0 50px 0px;
}

.mentions h1{
  font-family: 'Berthold Akzidenz Grotesk BE Bold';
  font-size: 24px;
}

.mentions h3{
  font-family: 'Berthold Akzidenz Grotesk BE Bold Condensed';
  color: #E75A25;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  margin: 20px 0 20px 0px;
}

/* ---------- Min 992px ---------- */
@media all and (min-width: 1050px) {
  header .menu::before{
      display: none;
  }
  header .toggle {
    display: none;
}
  header .menu {
      width: auto;
      height: auto;
      background: none;
      border-left: none;
      position: static;
      padding: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
  }
  header .menu>li:first-child {
      display: none;
  }
  header .menu>li {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
      margin-left: 36px;
      color: #fff;
  }
  header .menu>li a {
      position: relative;
      font-weight: 300;
  }
  header .menu>li a span {
      width: 100%;
      height: 3px;
      background: #fff;
      position: absolute;
      top: -75px;
      left: 0;
  }
  .header_children {
      position: relative;
  }
  .header_subchildren {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      top: 25px;
      background: #fff;
      padding: 30px;
      color: #24262C;
      font-family: 'HK Grotesk SemiBold';
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
      height: auto;
  }
  .header_subchildren>li:first-child, .header_subchildren span {
      display: block
  }
  .header_subchildren li:first-child {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 4px;
  }
  .header_subchildren span {
      width: 40px;
      height: 2px;
      background: #24262c;
      margin-bottom: 28px;
  }
  .header_subchildren li {
      white-space: nowrap;
      font-size: 15px;
      margin-bottom: 17px;
  }
  .header_subchildren>li:first-child {
      margin-top: 0;
  }
  .header_subchildren>li {
      padding-top: 0;
  }
  .header_subchildren li:last-child {
      margin-bottom: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .slider__image {
    width: 80%;
  }
  .carousel {
    top: -215px;
  }
}

@media only screen and (max-width: 992px) {
  /*#instafeed{
    display: none;
  }*/
  .feed{
    display: none;
  }
  footer .col-md-4{
    margin-bottom: 40px;
  }
  .gav-1, .gav-2 {
    display: none;
  }
  .slider{
    display: none;
  }
  .btn-carte{
    display: inherit !important;
  }
  .bloc li {
    height: 160px;
    width: 160px;
  }
  .events{
    height: 60vh;
  }
  .events .swiper-container{
    bottom: 90px;
  }
  .follow{
    margin: 100px auto;
  }
  footer{
    padding: 30px 0;
  }
}

@media only screen and (max-width: 768px) {
  .title h1 {
    font-size: 50px;
    line-height: 60px;
    display: inline-table;
  }
  .bloc li {
    /*height: 134px;*/
    /*width: 134px;  */  
    width: 50%;
  }
  .overlay img{
    width:60%;
  }
  header .logo img {
    height: 85%;
  }
  .bloc {
    align-content: center;
    display: inline-block;
    margin: auto;
    padding: 25px;
  }
  .horaire {
    padding: 0px 0px 0px 0px;
  }
  .title{
    position: absolute;
    top: 50%;
    left: 55%;
    /* transform: translate(-50%, -50%); */
    /* text-align: left; */
    display: inline-table;
    z-index: 10;
    width: 84%;
  }
}

@media only screen and (max-width: 580px) {
  .title h1 {
    font-size: 40px;
    line-height: 60px;
    display: inline-table;
  }
  #cv-du-chef{
    height:110vh;
  }
}