@media screen and (max-width: 1300px) {
  html,body{overflow-x: hidden}

#logommenubloc { display: none; }

header
  {
    padding: 15px 20px;
}

/*shorter clearfix http://nicolasgallagher.com/micro-clearfix-hack/*/
header:before,
header:after {
    content:"";
    display:table;
}

header:after {
    clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
header {
    zoom:1;
}

* { box-sizing: border-box; }

#mobilenav
  {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #29235C;
  background: linear-gradient(to left, #332C74, #29235C);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 50px;
  padding: 1em;
  z-index: 99999;
  }

.menu
  {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 99999;
  }

.menu > li
  {
  margin: 0 1rem;
  overflow: hidden;
  }

.menu-button-container
  {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }

#menu-toggle { display: none; }

.menu-button,
.menu-button::before,
.menu-button::after
  {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
  }

.menu-button::before
  {
  content: '';
  margin-top: -8px;
  }

.menu-button::after
  {
  content: '';
  margin-top: 8px;
  }

#menu-toggle:checked + .menu-button-container .menu-button::before
  {
  margin-top: 0px;
  transform: rotate(405deg);
  }

#menu-toggle:checked + .menu-button-container .menu-button { background: rgba(255, 255, 255, 0); }

#menu-toggle:checked + .menu-button-container .menu-button::after
  {
  margin-top: 0px;
  transform: rotate(-405deg);
  }

.menu-button-container { display: flex; }
.menu
  {
  position: absolute;
  top: 0;
  margin-top: 50px;
  left: 0;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  }
#menu-toggle ~ .menu li
  {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
#menu-toggle:checked ~ .menu li
  {
  border: 1px solid #DBBE9B;
  height: 2.5em;
  padding: 0.5em;
  transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
.menu > li
  {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0.5em 0;
  width: 100%;
  color: white;
  background: linear-gradient(to left, #332C74, #29235C);
  }
.menu > li:not(:last-child) { border-bottom: 1px solid #444; }
.menu > li a
  {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  text-decoration:none;
  }
#logomobile
  {
  display: flex;
  width: 250px;
  height: 99px;
  margin: 25px auto 15px auto;
  }

#logomobileevent
  {
  display: flex;
  width: 250px;
  height: auto;
  margin: 25px auto 15px auto;
  }
#logomobileevent img
  {
  width: 250px;
  height: auto;
  }

/* Nouveau menu mobile */


nav {
  background: linear-gradient(to left, #64C1D2, #6EC6D5);
  height: 50px;
  /* padding: 0 16px; */
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: flex-end
  /* fade in checked menu */
}
nav .m-menu__checkbox {
  display: none;
}
nav label.m-menu__toggle {
  cursor: pointer;
  margin: 0 16px 0 0;
}
nav .m-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: auto;
  -moz-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  -webkit-transition: transform 0.35s;
  transition: transform 0.35s;
  z-index: 1;
  overflow: hidden;
  background-color: #6EC6D5;
}
nav .m-menu__overlay {
background-color: rgba(103, 103, 103, 0.5);
  position: absolute;
  top: 0;
  width: auto;
  height: auto;
  bottom: 0;
  z-index: 1;
  display: none;
}
nav .m-menu__header {
  padding: 0 16px;
  height: 50px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  border-bottom: 1px solid #e8e8e8;
}
nav .m-menu__header span {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
nav .m-menu .m-menu {
  -moz-transform: translate3d(480px, 0, 0);
  -o-transform: translate3d(480px, 0, 0);
  -ms-transform: translate3d(480px, 0, 0);
  -webkit-transform: translate3d(480px, 0, 0);
  transform: translate3d(480px, 0, 0);
}
nav .m-menu ul {
  height: 100%;
  overflow-y: auto;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav .m-menu ul li a, nav .m-menu ul li label {
  display: block;
  text-align: left;
  padding: 0 15px;
  line-height: 47px;
  text-decoration: none;
  color: #FFF;
  cursor: pointer;
  font-size: 1rem;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
nav .m-menu ul li a, nav .m-menu ul li label a
  {
  margin:0;
  padding:0;
  text-decoration: none;
  border: 0;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  }
nav .m-menu ul li label.a-label__chevron::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 10px;
  width: 10px;
  border-color: #333;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -5px;
  right: 16px;
}
nav .m-menu ul li .-invisible {
  border-bottom: 0;
}
nav .m-menu .m-menu label.m-menu__toggle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  border-bottom: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
nav .m-menu__checkbox:checked ~ .m-menu__overlay {
  display: block;
}
nav .m-menu__checkbox:checked ~ .m-menu {
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}


/* Fin du nouveau menu mobile */

.btnbilletterietablette
  {
  display: block;
  width: 110px;
  height: 35px;
  line-height: 35px;
  position: absolute;
  top: 8px;
  left: 255px;
  }
.btnbilletterietablette a
  {
  display: block;
  width: 120px;
  height: 35px;
  background-color: #FF8811;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 13pt;
  text-align: center;
  text-decoration: none;
  -webkit-border-top-left-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-radius-topleft: 15px;
  -moz-border-radius-bottomright: 15px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  }
.btnbilletterietablette a:hover
  {
  background-color: #FFAC59;
  }


#google_translate_element
  {
  position: absolute;
  top: 15px;
  left: 15px;
  }
#imgtelfixetablette
  {
  display: block;
  position: absolute;
  top: 7px;
  right: 75px;
  }
#imgtelfixetablette img
  {
  width: 280px;
  height: 37px;
  margin-right: 35px;
  }

#videoBG
  {
  width: 100%;
  height: auto;
  }
#videoBGpc
  {
  width: 100%;
  height: auto;
  }
.textecenter img
  {
  width: 150px;
  height: 20px;
  }

#presentation
  {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  }
.img-textepresentation .img-texte
  {
  width: 100% !important;
  height: auto;
  position: relative;
  }
#presentation .img-textepresentation .img-texte img
  {
  width: 100% !important;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  }
#presentation .img-textepresentation .textepresentation
  {
  max-width: 100%;
  position: relative;
  padding: 30px;
  border: none;
  box-shadow: none;
  border-radius: 0;
  line-height: 25px;
  }

.img-textepresentation .textepresentation  .contactus a { width: 45%; margin: 0 auto; }


.imgpresentation
  {
  margin-top: 35px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  }
.imgpresentation img
  {
  width: 100% !important;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  }
.textepresentationevent
  {
  max-width: 100%;
  padding: 30px;
  border: none;
  box-shadow: none;
  border-radius: 0;
  line-height: 25px;
  }
.sectionguests
  {
  display: flex;
  flex-wrap: wrap;
  }
.sectionguests .card-element
  {
  width: 40%;
  }
.sectionguests .card-element:nth-child(3)
  {
  margin-top: 25px;
  }
.sectionguests .card-element:nth-child(4)
  {
  margin-top: 25px;
  }

#presentation
  {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  }
.img-textepresentation .img-texte
  {
  width: 100% !important;
  height: auto;
  position: relative;
  }
#presentation .img-textepresentation .img-texte img
  {
  width: 100% !important;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  }
#presentation .img-textepresentation .textepresentation
  {
  max-width: 100%;
  position: relative;
  padding: 30px;
  border: none;
  box-shadow: none;
  border-radius: 0;
  line-height: 25px;
  }

.img-textepresentation .textepresentation  .contactus a { width: 45%; margin: 0 auto; }

.sectionnotregroupe .card-element
  {
  width: 30%;
  height: auto;
  }

#tbfaq
  {
  width: 90%;
  height: auto;
  margin: 0 auto;
  }
#tbfaq .firstcol
  {
  height: 50px;
  font-size: 30pt;
  line-height: 20px;
  }
#tbfaq .secondcol
  {
  height: 50px;
  font-size: 12pt;
  line-height: 20px;
  }
#tbfaq .maincolrep
  {
  font-size: 10pt;
  line-height: 25px;
  padding: 5px 6px 15px 6px;
  }
#tbfaq .lignemobile
  {
  display: table-row;
  width: auto;
  height: 1px;
  }
#tbfaq .lignemobile>td
  {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #000000;
  }

.maintitlesectionevent
  {
  margin: 35px auto;
  }

/* NOUVEAU CSS POUR LA MISE EN PAGE DE L'ÉVÈNEMENT */

.bloc-event-title h1
  {
  font-size: 3rem;
  }

input[type="radio"].selectprogramme + label
  {
  font-size: 12pt;
  line-height: 1.5;
  }

.bloc-event-img
  {
  margin: 55px auto 0 auto;
  }

/* FIN NOUVEAU CSS POUR LA MISE EN PAGE DE L'ÉVÈNEMENT */

#footer
  {
  width: 100%;
  height: auto;
  margin: 30px auto 35px auto;
  text-align: center;
  font-size: 10pt;
  }

#mentionslegales
  {
  width: 90%;
  height: auto;
  text-align: justify;
  font-size: 11pt;
  margin: 55px auto 0 auto;
  }
#mentionslegales .titlesschapitres
  {
  font-size: 12pt;
  font-weight: bold;
  text-align: left;
  color: #E4022E;
  }

#bandeautop, .navheader, .videofirstpc, .btnbilletteriemobile, .mainheaderpc { display: none; }
#mobilenav { display: flex; }

}
