:root {
	--global-primary-color: #00074F;;
	--global-secondary-color: #000;
}

/**
 * OTHER FONTS
 */

@font-face {
    font-family: 'causten_round';
    src: url('/font/CaustenRound/caustenround-black-webfont.woff2') format('woff2'),
         url('/font/CaustenRound/caustenround-black-webfont.woff') format('woff');
    font-weight: 900; /* Black */
    font-style: normal;
}

@font-face {
    font-family: 'causten_round';
    src: url('/font/CaustenRound/caustenround-bold-webfont.woff2') format('woff2'),
         url('/font/CaustenRound/caustenround-bold-webfont.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'causten_round';
    src: url('/font/CaustenRound/caustenround-extrabold-webfont.woff2') format('woff2'),
         url('/font/CaustenRound/caustenround-extrabold-webfont.woff') format('woff');
    font-weight: 800; /* Extra Bold */
    font-style: normal;
}

@font-face {
    font-family: 'causten_round';
    src: url('/font/CaustenRound/caustenround-light-webfont.woff2') format('woff2'),
         url('/font/CaustenRound/caustenround-light-webfont.woff') format('woff');
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'causten_round';
    src: url('/font/CaustenRound/caustenround-medium-webfont.woff2') format('woff2'),
         url('/font/CaustenRound/caustenround-medium-webfont.woff') format('woff');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'causten_round';
    src: url('/font/CaustenRound/caustenround-regular-webfont.woff2') format('woff2'),
         url('/font/CaustenRound/caustenround-regular-webfont.woff') format('woff');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'causten_round';
    src: url('/font/CaustenRound/caustenround-semibold-webfont.woff2') format('woff2'),
         url('/font/CaustenRound/caustenround-semibold-webfont.woff') format('woff');
    font-weight: 600; /* Semi Bold */
    font-style: normal;
}

@font-face {
    font-family: 'causten_round';
    src: url('/font/CaustenRound/caustenround-thin-webfont.woff2') format('woff2'),
         url('/font/CaustenRound/caustenround-thin-webfont.woff') format('woff');
    font-weight: 100; /* Thin */
    font-style: normal;
}

/**********
 * Global *
 *********/

html {
	margin: 0px;
	padding: 0px;
	color: #3a383f;
	font-size: 12px;
	border: 0px solid transparent;
	font-family: 'causten_round', Arial, sans-serif;
}

body {
	margin: 0px;
	padding: 0px;
	width: 100%;
}

a {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

img {
	border: none;
}

:focus {
	outline: none;
}

::-moz-focus-inner {
	border: 0;
}

::-moz-selection {
	color: #FFF;
	background: var(--global-primary-color);
}

::selection {
	color: #FFF;
	background: var(--global-primary-color);
}

.flol {
	float: left;
}

.flor {
	float: right;
}

.alc {
	text-align: center;
}

.alr {
	text-align: right;
}

.prel {
	position: relative;
}

.w20 {
	width: 20%;
}

.w30 {
	width: 30%;
}

.w70 {
	width: 70%;
}

.w80 {
	width: 80%;
}

.dib {
	display: block;
}

.m0auto {
	margin: 0 auto;
}

.fin {
	clear: both;
	line-height: 0;
	height: 0;
	font-size: 1px;
}

.dnone {
	display: none;
}

#strErreur,
#strInfo {
	display: none;
}

#map-canvas {
	width: 100%;
	height: 250px;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex.sb {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex.sa {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.flex.start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.flex.end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex.jcc {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flex.ac {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex.col {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.acc {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.ac {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

body .w33 {
	width: 33.3333333333%;
}

/**********/

h1,
h2,
h3,
h4,
p {
	margin: 0px;
	font-weight: normal;
	padding: 0px;
}

html,
body {
	height: 100%;
}

* {
	margin: 0;
	padding: 0;
}


/********************
**** BACK TO TOP ****
********************/

#returnOnTop {
	background: url('/imgs/picto.backtotop.png') no-repeat;
	bottom: 1%;
	cursor: pointer;
	display: none;
	filter: alpha(opacity=50);
	/* IE < 8 */
	height: 48px;
	opacity: 0.5;
	position: fixed;
	right: 1%;
	width: 48px;
}

#returnOnTop:hover {
	filter: alpha(opacity=100);
	/* IE < 8 */
	opacity: 1;
}

/*************
**** BODY ****
**************/

.reg_content {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 1144px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/*************
**** MENU ****
**************/

.menu {
	position: fixed;
	width: 100%;
	background: rgba(0, 7, 79, .6);
	height: 60px;
	color: #FFF;
	z-index: 1000000000;
	animation-delay: 0s;
	animation-duration: 1s;
	animation-name: fadeInDown;
	top: 0px;
}

.menuTab {
	display: table;
	position: absolute;
	top: 0;
	white-space: nowrap;
	z-index: 100000000;
}

.menuTab .menuRow {
	display: table-row;
}

a.menuCell {
	display: table-cell;
	text-align: center;
	padding: 5px 20px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
}

a.menuCell:hover {
	color: var(--global-secondary-color);
}

a.menuCell.home:before {
	content: "\f015";
	font: normal normal normal 16px/1 'FontAwesome';
	display: block;
	padding: 15px 5px;
}

.menuTab .menuRow .menuCell.resp {
	display: none;
	background: rgba(0, 7, 79, .6) url('/imgs/menu.png') no-repeat scroll 5px 5px;
	text-align: left;
	color: #FFF;
	position: static;
	line-height: 24px;
	padding: 5px 0 5px 40px;
	font-size: 20px;
	font-weight: 300;
}

#loading {
	width: 0%;
	height: 3px;
	background: var(--global-primary-color);
}

/*************
*** BOTTOM ***
**************/

.reg_contentBot {
	position: absolute;
	bottom: 1%;
	width: auto;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
}

.reg_contentBot .botFooter {
	font-size: 13px;
	color: #FFFFFF;
	font-style: normal;
}

.botFooter cite {
	font-style: normal;
	padding: 0 8px;
}

/*************
*** BOUTON ***
**************/

.btnStd {
	display: table;
	margin: 0 auto;
	padding: 8px 20px;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	line-height: 26px;
}

.btnSpe {
	display: table;
	margin: 0 auto;
	padding: 8px 20px;
	font-weight: normal;
	font-size: 16px;
	text-align: center;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-weight: 700;
	cursor: pointer;
	border: solid 2px var(--global-primary-color);
	color: var(--global-secondary-color);
	background: #FFFFFF;
}

.btnStd.blanc {
	border: solid 2px #FFFFFF;
	color: #FFFFFF;
}

.btnStd.bleu {
	border: solid 2px var(--global-secondary-color);
	color: var(--global-secondary-color);
}

.btnStd.blanc:hover {
	background: #FFFFFF;
	color: var(--global-secondary-color);
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.btnStd.bleu:hover {
	background: var(--global-secondary-color);
	color: #FFFFFF;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

#slide1 .contentBloc .RoundLogo img {
	width: 100%;
}


/*************
*** MIDDLE ***
**************/

.video {
	background: #FFF;
}

.video .videoBloc {
	padding: 100px 0 0 0;
	width: 90%;
	margin: 0 auto;
}

.video .videoBloc.fb {
	width: 83%;
}

.video .videoBloc .padVideo {
	padding: 0 0 20px 0;
}

.video .videoBloc .contentVideo {
	float: left;
	width: 33%;
}

.video .videoBloc .contentVideo .contentVideoPad {
	padding: 4px;
}

.video .videoBloc .contentVideo .contentVideoPad video {
	width: 100%;
}

/**** BLOC 1 ***/

.linkR {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}

.linkR a {
	display: block;
	width: 90px;
	margin: 25px 0;
}

.linkR a img {
	display: block;
	max-width: 90px;
}

.contentBloc h1,
.contentBloc h2 {
	display: block;
	font-weight: bold;
	font-size: 56px;
	color: #FFFFFF;
	text-align: center;
	padding: 30px 0;
	text-transform: uppercase;
}

.contentBloc h2 strong {
	color: var(--global-primary-color);
}

#slide1 {
	position: relative;
	height: 1314px;
	background-color: #FFF;
	background-image: url('/imgs/jeremy-hababou.jpg?1');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#slide1 .contentBloc {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 100%;
	box-sizing: border-box;
}

#slide1 .contentBloc .presente {
	color: #FFFFFF;
	font-size: 18px;
	animation-delay: 0s;
	animation-duration: 1s;
	animation-name: fadeIn;
	line-height: 1.2;
	padding: 50px 80px;
	text-align: right;
}

#slide1 .contentBloc .presente h1 {
	font-weight: 400;
	font-size: 6vw;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 0.82;
	color: #FFFFFF;
	text-align: right;
	padding: 0;
	letter-spacing: 10px;
}

#slide1 .contentBloc .presente h1 strong {
	color: var(--global-primary-color);
}

#slide1 .contentBloc .presente h2 {
	font-weight: 400;
	text-transform: none;
	font-size: 20px;
	padding: 0 10px 5px 0;
	text-align: right;
}

#slide1 .contentBloc .presente h2 span {
	font-weight: normal;
	color: #FFFFFF;
	text-transform: none;
}

#slide1 .contentBloc img,
#slide1 .contentBloc i {
	margin: 0 auto;
	display: block;
	animation-delay: 0s;
	animation-name: fadeInUp;
}

#slide1 .contentBloc .communaute {
	margin: 25px 0;
}

#slide1 .communaute a.facebook,
#slide1 .communaute a.twitter,
#slide1 .communaute a.instagram,
#slide1 .communaute a.youtube,
#slide1 .communaute a.tiktok {
	font-size: 30px;
	color: #fff;
	margin: 0 10px;
	border: solid 2px rgba(255, 255, 255, 0);
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

#slide1 .communaute a.facebook i {
	animation-duration: 1s;
}

#slide1 .communaute a.instagram i {
	animation-duration: 1.5s;
}

#slide1 .communaute a.tiktok img {
	width: 27px;
	height: 27px;
	animation-duration: 2s;
}

#slide1 .btnStd {
	margin: 30px auto;
	font-size: 30px;
	padding: 20px 30px;
	animation-delay: 0s;
	animation-duration: 2.5s;
	animation-name: bounceIn;
	color: #000;
	border: solid 1px #000;
}

/**** BLOC 2 ***/

#slide2 {
	position: relative;
	background-color: #000;
	background-image: url('/imgs/le-spectacle.jpg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
}

#slide2 .contentBloc h1 strong,
.video h1 strong {
	/* font-weight:normal; */
	color: var(--global-primary-color);
}

#slide2 .contentBloc p {
	display: block;
	font-size: 18px;
	color: #3a383f;
	line-height: 36px;
	text-align: center;
	font-weight: 300;
	padding: 30px 0;
	text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

#slide2 .contentBloc p strong {
	font-weight: 700;
}

#slide2 .btnStd {
	margin: 30px auto;
}

/**** BLOC 3 ***/

#slide3 {
	position: relative;
	height: 100%;
	min-height: 700px;
	background-color: #000;
	background-image: url('/imgs/les-dates.jpg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
}

#slide3 h2 strong {
	color: var(--global-primary-color);
}

#slide3 .contentBloc .tourneePad {
	padding: 15px 0;
}

#slide3 .contentBloc {
	text-align: center;
	width: 100%;
}

#slide3 .contentBloc h3 {
	font-weight: 700;
	display: inline-block;
	font-size: 20px;
	color: var(--global-secondary-color);
	text-transform: uppercase;
}

#slide3 .contentBloc h4 {
	font-style: normal;
	font-size: 18px;
	color: var(--global-secondary-color);
	font-weight: normal;
	line-height: 22px;
}

#slide3 .contentBloc span {
	font-style: normal;
	font-weight: 700;
	text-align: center;
	font-size: 16px;
	display: block;
	color: #3a383f;
	padding: 10px 0 5px 0;
}

#slide3 .contentBloc cite {
	font-weight: 300;
	display: block;
	font-style: italic;
	text-align: center;
	font-size: 14px;
	color: var(--global-secondary-color);
	padding: 5px 0;
}

#slide3 .btnSpe {
	margin: 10px auto;
}

#slide3 .btnStd {
	margin: 15px auto;
}

#slide3 .contentBloc .dnone {
	display: none;
}

/**** BLOC 4 et 5 ***/

#slide4 {
	position: relative;
	background-color: #000;
	background-image: url('/imgs/esperence.jpg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
}

#slide4 h2 {
	display: block;
	font-weight: bold;
	color: #3a383f;
	text-align: center;
	padding: 30px 0;
}

#slide4 h2 strong {
	color: var(--global-primary-color);
}

#slide4 p {
	text-align: right;
	display: block;
	font-size: 14px;
	color: #3a383f;
	line-height: 32px;
	padding: 30px 0;
}

#slide4 p cite {
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
}

#slide4 p strong {
	font-style: normal;
	font-weight: 400;
}

#slide5 .blocPresse img {
	max-width: 100%;
}

.width33 {
	width: 33.333333333%;
}

.width25 {
	width: 25%;
}

.instagram-grid{
  margin: 50px auto;
}

.instagram-grid-item{
  margin-left: 10px;
  width: 350px;
  height: 350px;
  max-width: 350px;
  min-width: 350px;
  overflow: hidden;
  max-height: 400px;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;  
}
.instagram-grid-item a{
  display: inline-block;
  width: 100%;
  height: 100%;
}
.instagram-grid-item {
  transition: transform 0.3s ease-in-out;
}
.instagram-grid-item a.social:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.instagram-grid-item video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recouvre tout le bloc, en conservant les proportions */
}

.presImg {
	padding-top: 2%;
	max-width: 100px;
	margin: 0 auto;
}

.blocPresse h3 {
	font-size: 22px;
	color: var(--global-secondary-color);
	padding: 0 0 10px 0;
	font-weight: 700;
	border-bottom: solid 1px var(--global-secondary-color);
}

.blocPresse {
	background: rgba(255, 255, 255, 0.8);
	color: var(--global-primary-color);
	padding: 10px 15px;
	margin: 20px;
	line-height: 28px;
	min-height: 203px;
}

.blocPresse span {
	color: #3a383f;
	font-size: 17px;
	font-style: italic;
	display: inline-block;
	padding: 10px 0 0 0;
}

/* TABLEAU DATES */
.bloc-table {
	display: table;
	background-color: white;
	margin: 0 auto;
	opacity: 0.8;
	width: 90%;
}

.bloc-table-row {
	display: table-row;
	width: 100%;
}

.bloc-table-cell {
	display: table-cell;
	padding: 5px;
	vertical-align: middle;
}

/**** BLOC 6 ***/

#slide6 {
	position: relative;
	background: var(--global-primary-color);
}

#slide6 h2 {
	display: block;
	font-size: 50px;
	color: #FFF;
	text-align: center;
	padding: 30px 0;
}

#slide6 h2 strong {
	font-style: normal;
	color: var(--global-primary-color);
}

#slide6 p {
	text-align: justify;
	display: block;
	font-size: 14px;
	color: #3a383f;
	line-height: 22px;
	font-style: italic;
	width: 90%;
	padding: 30px 0;
	margin: 0 auto;

}

#slide6 p cite {
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
}

#slide6 .btnStd {
	margin: 30px auto;
}


/**** BLOC 7 ***/

#slide7 {
	background: var(--global-secondary-color);
	position: relative;
}

#slide7 .contentBloc {
	width: 100%;
}

#slide7 .contentContact {
	padding: 40px 0;
}

#slide7 .contact {
	float: left;
	width: 50%;
}

#slide7 .contentContact strong {
	display: block;
	text-transform: uppercase;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	padding: 40px 10px 8px 10px;
	text-align: center;
}

#slide7 .contentContact strong.production {
	background: url('/imgs/picto-production.png') center top no-repeat;
}

#slide7 .contentContact strong.contactpro {
	background: url('/imgs/picto-mail.png') center top no-repeat;
}

#slide7 .contentContact strong.manager {
	background: url('/imgs/picto-manager.png') center top no-repeat;
}

#slide7 .contentContact strong.doc {
	background: url('/imgs/picto-dossier-presse.png') center top no-repeat;
}

#slide7 .contentContact strong.part {
	background: url('/imgs/picto-like.png') center top no-repeat;
}

#slide7 .contentContact span {
	display: block;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 300;
	padding: 5px 10px;
	text-align: center;
	line-height: 24px;
}

#slide7 .contentContact span b {
	font-weight: 700;
}

#slide7 .contentContact a:hover {
	color: var(--global-primary-color);
}

#slide7 .contentContact .tabLogo {
	width: 20%;
	margin: 30px auto 0 auto;
	display: table;
}

#slide7 .contentContact .tabLogo .trLogo {
	display: table-row;
}

#slide7 .contentContact a.tdLogo {
	display: table-cell;
}

#slide7 .contentContact img {
	display: block;
	/* width:80%; */
	margin: 0 auto;
}

/**** 404 ***/
#page404 {
	background: var(--global-primary-color);
	position: relative;
}

#page404 .contentBloc img {
	display: block;
	margin: 0 auto;
	width: 30%;
	padding: 0 0 40px 0;
}

#page404 .contentBloc h1 {
	color: #ffffff;
	display: block;
	font-size: 50px;
	font-weight: 700;
	padding: 30px 0 10px 0;
	text-align: center;
}

#page404 .contentBloc h1 strong {
	color: var(--global-secondary-color);
	font-weight: normal;
}

#page404 .contentBloc h2 {
	color: #ffffff;
	display: block;
	font-size: 30px;
	font-weight: 400;
	padding: 0 0 50px 0;
	text-align: center;
}

#slide2 .contentBloc p {
	text-shadow: initial;
	margin: 5px 0;
	width: auto;
	max-width: 100%;
	background: rgba(255, 255, 255, 0.8);
	padding: 50px;
	margin: 25px;
	color: #3a383f;
	-webkit-box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.15);
	box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.15);
}

#slide3 .contentBloc .tourneePad.w33 {
	width: 24%;
	margin: 5px 1% 5px 0;
	min-height: 120px;
	padding: 15px 0;
}

.contentBloc .btnSpe:hover {
	background-color: var(--global-primary-color);
	color: #FFFFFF;
}

/***********
 * ECRAN MOYEN
 */

@media screen and (max-width: 1400px) {
	.btnSpe {
		font-size: 14px;
	}

	.btnStd {
		padding: 3px 16px;
	}

	#slide2 .btnStd {
		margin: 10px auto;
	}

	#slide3 .contentBloc {
		width: 80%;
	}

	#slide3 .contentBloc h3 {
		font-size: 16px;
	}

	#slide3 .contentBloc h4 {
		font-size: 15px;
	}

	#slide3 .contentBloc span {
		font-size: 16px;
	}

	#slide3 .contentBloc span {
		padding: 10px;
	}

	#slide3 .contentBloc cite {
		padding: 0;
	}

	#slide3 .contentBloc .tourneePad {
		padding: 10px 0;
	}

	#slide6 p {
		padding: 20px 0;
		font-size: 13px;
		line-height: 19px;
	}

	#slide7 .contentContact {
		padding: 23px 0;
	}
}

/***********
 * ECRAN 13 POUCES
 */

@media screen and (max-width: 1280px) {
	#slide1 {
		height: 550px;
	}

	#slide3 .contentBloc .tourneePad {
		padding: 28px 0;
	}

	#slide4 p {
		font-size: 14px;
		line-height: 30px;
	}

	#slide1 .contentBloc img {
		width: 60%;
	}

	#slide3 .contentBloc .tourneePad.w33 {
		padding: 5px 0;
	}


}

/***********
 * TABLETTE PAYSAGE
 */

@media screen and (max-width: 960px) {

	#slide2 .contentBloc p {
		font-size: 15px;
		line-height: 32px;
	}

	#slide7 .contact {
		width: 50%;
		margin: 15px 0;
	}

	#slide3 .contentBloc h3 {
		font-size: 12px;
	}

	#slide5 .width33 {
		width: 100%;
	}

	#slide5 .width25 {
		width: 100%;
	}	

	#slide5 .blocPresse {
		min-height: auto;
		position: relative;
	}

	#slide5 .blocPresse span {
		font-size: 12px;
		padding: 0px;
	}

	#slide5 .blocPresse h3 {
		font-size: 16px;
		border: none;
		padding: 0px;
	}

	#slide1 .contentBloc .presente h1 {
		font-size: 10vw;
		line-height: 0.85;
	}

	#slide1 {
		background-repeat: no-repeat;
	}
}


/***********
 * PETITE TABLETTE PAYSAGE
 */

@media screen and (max-width: 800px) {

	#slide1 .contentBloc21Cont {
		height: 75vh;
		display: block;
	}
}


/***********
 * TABLETTE PORTRAIT
 */

@media screen and (max-width: 768px) {

	body:after{
	    content:"";
	    position:fixed; /* stretch a fixed position to the whole screen */
	    top:0;
	    height:100vh; /* fix for mobile browser address bar appearing disappearing */
	    left:0;
	    right:0;
	    z-index:-1; /* needed to keep in the background */
/*	    background: url(https://www.w3schools.com/css/trolltunga.jpg) center center;*/
	    -webkit-background-size: cover;
	    -moz-background-size: cover;
	    -o-background-size: cover;
	    background-size: cover;
	}
	#slide1 {
		background-position: left center;
		background-repeat: no-repeat;
		height: 588px;
	}

	#slide1:after{
	    content:"";
	    position:fixed; /* stretch a fixed position to the whole screen */
	    top:0;
	    height:100vh; /* fix for mobile browser address bar appearing disappearing */
	    left:0;
	    right:0;
	    z-index:-1; /* needed to keep in the background */
		background-position: center 70px;
		background-repeat: no-repeat;
		-webkit-background-size: cover;
	    -moz-background-size: cover;
	    -o-background-size: cover;
	    background-size: cover;
	}

	#slide2 .contentBloc p{
		width: 90%;
		margin: 40px auto;
	}

	#slide5 .presImg {
		position: static;
	}

	#slide3{
		min-height: auto;
	}

	#slide3 .contentBloc .tourneePad {
		padding: 22px 0;
	}

	#slide2 h1,
	.slide2 h1 strong,
	.contentBloc h2,
	.contentBloc h2 strong {
		font-size: 40px;
	}

	#slide3 .contentBloc h3,
	#slide3 .contentBloc h4,
	#slide3 .contentBloc span,
	#slide3 .contentBloc cite {
		color: #3a383f;
	}

	#slide7 .contact {
		width: 33%;
	}

	.instagram-grid-item a{
		width: 85%;
		margin: 0 auto;
		display: block;
	}
	.instagram-grid-item a video{
		width: 100%;
		position:initial;
	}	

	.menuTab {
		position: initial;
		margin-left: auto;
		display: block;
		left: auto;
		background: #FFFFFF;
	}

	.menuTab .menuRow {
		position: absolute;
		width: 100%;
		display: block;
		left: 0;
	}

	a.menuCell {
		font-size: 15px;
	}

	.menuTab .menuRow .menuCell.resp {
		display: block;
	}

	.menuTab .menuRow .menuCell {
		display: block;
		float: none;
		padding: 6px 0;
		width: 100%;
	}

	.menuTab {
		position: absolute;
		left: 0;
		width: 100%;
	}

	.menuTab .menuRow .menuCell {
		padding: 6px 10px;
	}

	.menu {
		display: block;
		height: 35px;
		width: 100%;
		overflow: hidden;
		text-align: center;
		background: rgba(0, 7, 79, .9);
	}

	#slide4 p {
		padding: 15px;
	}

	#slide4 p iframe {
		max-width: 100%;
	}

	#slide7 .contentContact span {
		font-size: 13px;
	}

	#slide5 .blocPresse span {
		padding: 15px 0 0 0;
	}

	#slide2 .contentBloc p {
		padding: 15px;
	}

	#slide3 .contentBloc {
		width: 100%;
	}

	#slide3 .contentBloc .bloc-table {
		width: 95%;
	}

	#slide3 .contentBloc .bloc-table .bloc-table-cell {
		padding: 5px 15px;
	}

	.reg_contentBot {
		position: static;
		transform: none;
		text-align: center;
		padding-bottom: 10px;
	}
}


/***********
 * PETITE TABLETTE PORTRAIT
 */

@media screen and (max-width: 600px) {
	.reg_content {
		width: 99%;
	}

	#slide2 .contentBloc p {
		font-size: 14px;
		line-height: 28px;
	}

	#slide3 .contentBloc cite {
		font-size: 13px;
	}

	#slide3 .contentBloc .tourneePad {
		padding: 16px 0;
	}

	#slide4 p {
		line-height: 20px;
	}

	#slide5 .contentBloc h3 {
		font-size: 13px;
	}

	#slide5 span {
		font-size: 12px;
		line-height: 22px;
	}

	#slide7 .contentContact strong {
		font-size: 14px;
	}

	#slide7 .contentContact span {
		font-size: 12px;
	}

	#slide7 .contentContact {
		padding: 10px 0;
	}

	.btnStd.blanc {
		background: #FFFFFF;
		color: var(--global-secondary-color);
	}

	.btnStd.bleu {
		background: var(--global-secondary-color);
		color: #FFFFFF;
	}

	#slide4 h2,
	#slide5 h2 {
		text-align: center;
	}

	.video h1 {
		font-size: 40px;
		padding: 0px;
	}

	.video .videoBloc .contentVideo {
		float: none;
		width: 100%;
	}

	.video .videoBloc {
		padding: 50px 0 0 0;
	}

	.padBtn {
		padding: 0 0 30px 0;
	}

	#slide3 .contentBloc .tourneePad.w33 {
		width: 49%;
	}

	.flol.w70,
	.flol.w30 {
		float: none;
		width: 100%;
	}

	.linkR {
		top: auto;
		bottom: -23%;
		width: 100%;
	}

	.linkR a {
		width: 33.333333333333333333333%;
		float: left;
	}

	.bloc-table {
		width: 90%;
	}

	#slide1 {
		height: 470px;
	}

	#slide1 .contentBloc .presente {
		padding: 25px;
	}
}


/***********
 * MOBILE PAYSAGE
 */

@media screen and (max-width: 480px) {

	#slide1 .contentBloc img {
		padding: 15px 0;
	}

	#slide3 .contentBloc span {
		font-size: 14px;
	}

	#slide3 .contentBloc .tourneePad {
		padding: 12px 0;
	}

	#slide4 h2 {
		width: 100%;
	}

	#slide4 p {
		text-align: left;
	}

	#slide3 .contentBloc .tourneePad {
		padding: 35px 0;
	}

	.reg_contentBot {
		width: 70%;
	}

	#slide7 .contentContact {
		padding: 40px 0;
	}

	#slide7 .contentContact img {
		width: 100%;
	}

	#slide7 .contentContact .tabLogo {
		width: 50%;
	}

	#slide7 .contact {
		width: 80%;
		float: none;
		margin: 5px auto;
		line-height: 10px;
	}

	#slide1 .communaute a.facebook,
	#slide1 .communaute a.twitter,
	#slide1 .communaute a.instagram,
	#slide1 .communaute a.youtube,
	#slide1 .communaute a.tiktok {
		margin: 0 5px;
	}

	.btnSpe {
		font-size: 13px;
	}

	#slide7 h3 {
		display: none;
	}

	.blocPresse {
		padding: 10px;
	}

	#slide5 .presImg {
		right: 0px;
	}

	#slide5 .blocPresse span {
		padding: 0px;
	}

	.presImg img {
		display: block;
		width: 70%;
	}

	.bloc-table {
		width: 95%;
	}

	.bloc-table .bloc-table-cell:nth-child(2) {
		display: none;
	}

	.bloc-table .bloc-table-cell:nth-child(1) h4 {
		width: 100%;
	}

	#slide3 .contentBloc .date-tournee {
		display: none;
	}

	#slide3 .contentBloc .dnone {
		display: block;
	}

	#slide1 .reg_content {
		min-height: 530px !important;
	}

	#slide2{
		background: var(--global-primary-color);
	}	

	#slide4{
		background-image: none;
	}
}

/***********
 * MOBILE PORTRAIT
 */

@media screen and (max-width: 320px) {
	#slide1 .contentBloc .presente span {
		font-size: 14px;
		display: block;
	}

	#slide1 .contentBloc .presente strong {
		font-size: 13px;
		display: block;
		padding: 10px 0;
	}

	#slide1 .contentBloc img {
		width: 86%;
	}

	#slide2 .contentBloc h1 {
		font-size: 23px;
	}

	#slide2 .contentBloc p {
		font-size: 13px;
		line-height: 24px;
	}

	#slide3 .contentBloc .tourneePad {
		padding: 18px 0;
	}

	#slide4 p,
	#slide5 .contentBlocInfoSup,
	#slide6 p,
	#slide2 .contentBloc p {
		padding: 10px;
		margin: 20px 0;
	}

	#slide4 p {
		font-size: 11px;
		line-height: 18px;
	}

	#slide3 .contentBloc span {
		font-size: 13px;
	}

	#slide4 h2,
	#slide5 h2,
	#slide6 h2 {
		font-size: 22px;
	}

	.contentBloc h2 {
		font-size: 24px;
	}

	#slide5 .contentBloc h3 {
		font-size: 12px;
	}

	#slide5 span {
		font-size: 11px;
		line-height: 19px;
	}

	#slide6 p {
		font-size: 11px;
		line-height: 19px;
	}

	#slide6 p cite {
		font-size: 12px;
	}

	#slide7 h3 {
		font-size: 33px;
	}

	#slide7 .contentContact {
		padding: 5px 0;
	}

	#slide7 .contentContact strong {
		font-size: 13px;
	}

	#slide7 .contentContact span {
		font-size: 11px;
	}

	.reg_contentBot {
		width: 100%;
	}

	.reg_contentBot .botFooter {
		font-size: 12px;
	}

	.btnStd {
		padding: 2px 12px;
		font-size: 14px;
	}

	#slide3 .contentBloc .tourneePad {
		padding: 12px 0;
	}

	.reg_contentBot .botFooter {
		font-size: 11px;
	}

	.btnSpe {
		padding: 5px 14px;
		font-size: 12px;
	}
}