/* @override 
	https://michelmarchant.bonson.ca/wp-content/themes/michel/assets/styles/style.css?* */

/************************************************

Stylesheet: Global Stylesheet

*************************************************/

@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wdth,wght@0,75..125,200..900;1,75..125,200..900&display=swap');

/* .zalando-sans-<uniquifier> {
  font-family: "Zalando Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" <width>;
} */



:root {
  --blanc: #fff;
  --blanc90: rgba(255,255,255,.9);
  --blanc80: rgba(255,255,255,.8);
  --blanc70: rgba(255,255,255,.7);
  --blanc50: rgba(255,255,255,.5);
  --blanc25: rgba(255,255,255,.25);
  --blanc10: rgba(255,255,255,.1);
  
  --noir: #000;
  --noir80: rgba(0,0,0,.8);
  --noir50: rgba(0,0,0,.5);
  --noir25: rgba(0,0,0,.25);
  --noir10: rgba(0,0,0,.1);
  --noir05: rgba(0,0,0,.05);
  
  --rougemenu: #F00B00;
  --rouge: rgba(221, 91, 91, 1);
  --bleu: rgba(101, 141, 212, 1);
  --vert: rgba(120, 184, 91, 1);
  --orange: rgba(222, 152, 95, 1);
  
  --thin: 100;
  --extra-light: 200;
  --light: 300;
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --black: 900;
  
  --mobileheight: 60vh;
}

body {
  font-family: "Zalando Sans", sans-serif;
  /* font-variation-settings: "wdth" 80; */
}


a {
  line-height: inherit;
  color: var(--noir80);
  text-decoration: none;
  cursor: pointer;
}
a:focus, a:hover {
  color: var(--rougemenu);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Zalando Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: inherit;
  text-rendering: optimizeLegibility;
  /*font-variation-settings: "wdth" 80;*/
}
h1 {
	font-size: 2.75rem;
}
h2 {
	font-size: 2rem;
}

.grid-container {
  width: 100%;
}
.off-canvas-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.off-canvas-content .content {
  flex: 1;
}


/*********************
TOP BAR
*********************/
.header {
	/*background-color: yellow;*/
	display: block;
	position: relative;
}
.header:before {
	content: '';
	display: block;
	position: relative;
	width: 100%;
	height: 7rem;
	/*background-color: red;*/
	position: absolute;
	left: 0;
	
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
	background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
	background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
}

.top-bar {
  /* margin-bottom: 4rem; */
  /* font-variation-settings: "wdth" 80; */
  position: absolute;
  z-index: 2;
  width: 100%;
  padding-top: 4.5rem;
  
  
  color: var(--noir);
  font-size: 1.25rem;
}
.top-bar .top-bar-frame {
   background-color: var(--blanc25);
   padding: 2rem 2rem 1.125rem;
   margin: -2rem;
   border-radius: 25px; 
   /*backdrop-filter: blur(5px); */
   overflow: hidden;
   
   backdrop-filter: blur(10px);
   box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.05), inset 0 -2px 6px rgba(255, 255, 255, 0.1), 0 12px 27px rgba(0, 0, 0, 0.15);
}
.top-bar .top-bar-frame:before {
  content: '';
  display: block;
  width: calc(100%);
  height: 120%;
  position: absolute;
  /*margin-top: -2rem;*/
  /*margin-bottom: -2rem;*/
  margin: -2rem;
  border-radius: 25px; 
  opacity: .5;
  /*top: 0;*/
  /*left: 0;*/
  /*backdrop-filter: blur(7px);*/
  /*mask: linear-gradient(#0008 0%, #0000);*/
  /*background-color: #00000070;*/
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 51.4%, rgba(255, 255, 255, 0.2) 83.6%, rgba(255, 255, 255, 0) 100%);
	background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 51.4%, rgba(255, 255, 255, 0.2) 83.6%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 51.4%, rgba(255, 255, 255, 0.2) 83.6%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 51.4%, rgba(255, 255, 255, 0.2) 83.6%, rgba(255, 255, 255, 0) 100%);
	
	transition: all 250ms ease-in-out;

}

.top-bar .top-bar-frame:hover:before {
	background-color: var(--blanc50);
}

.top-bar .grid-container .grid-x {
  /* margin-top: 0rem; */
  /*padding-top: 1rem;*/
}
.top-bar, .top-bar ul {
  background-color: transparent;
  /* margin-bottom: -0.7rem; */
}
.top-bar a {
  color: var(--noir);
  border-radius: 15px;
	transition: all 250ms ease-in-out;
}
.top-bar .sitemenu a:hover, 
.footer nav a:hover {
   color: var(--blanc); 
   background-color: var(--noir80);
}
.top-bar .siteident {
  display: flex;
  flex-direction: column;
}
.top-bar .sitename a {
  margin-left: -1rem;
  font-size: 3.25rem;
  font-weight: 600;
  font-variation-settings: "wdth" 100;
  letter-spacing: -.033em;
}
.top-bar .description {
  padding-bottom: .3rem;
}
.top-bar .sitemenu {
  display: flex;
  align-items: end;
}




/* .page-contact .top-bar, */
.page-credits .top-bar {
  color: var(--noir);
}
/* .page-contact .top-bar .grid-container .grid-x, */
.page-credits .top-bar .grid-container .grid-x {
  /*border-top: 2px solid var(--noir);*/
}
/* .page-contact .top-bar a, */
.page-credits .top-bar a {
  color: var(--noir);
}




/*********************
MENU
*********************/
.menu .active>a {
  background: var(--noir);
  color: var(--blanc);
}

.menu:hover .active>a {
  background: var(--noir10);
  
  /*background: var(--noir05);*/
	text-shadow: 0px 0px 5px var(--noir50);
}







/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  margin-top: 0; 
  padding-bottom: 1rem;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 14.7%, rgba(0, 0, 0, 0.08) 100%);
	background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 14.7%, rgba(0, 0, 0, 0.08) 100%);
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 14.7%, rgba(0, 0, 0, 0.08) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 14.7%, rgba(0, 0, 0, 0.08) 100%);
}
.footer>.grid-container {
	/*background-color: red;;*/
	background-color: var(--blanc50);
   padding: 2rem 2rem 3rem;
   margin-top: -2rem;
   margin-bottom: -3rem;
   /*margin: -2rem;*/
   border-radius: 25px; 
   /*backdrop-filter: blur(5px); */
   overflow: hidden;
   
   backdrop-filter: blur(10px);
   box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.05), inset 0 -2px 6px rgba(255, 255, 255, 0.1), 0 12px 27px rgba(0, 0, 0, 0.15);
	max-width: calc(75rem + 3rem);
}
.page-contact .footer>.grid-container {
	padding-top: 1.5rem;
}
.footer .float-left {
  margin-left: -1rem;
}
.footer .float-right {
  float: right;
  margin-right: -1rem;
} 


.page-contact .footer .float-left,
.page-contact .footer .float-right {
	display: none;
}
.footer a {
	border-radius: 15px;
	transition: all 250ms ease-in-out;
}
.footer nav .menu a {
	font-size: 1rem;
}
.footer .sitename a {
  /*margin-left: -1rem;*/
  /*font-size: 3.25rem;*/
  font-weight: 600;
  /*font-variation-settings: "wdth" 100;*/
  letter-spacing: -.033em;
}
.footer .description {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: .7rem 1rem;
  margin-left: -1.66rem;
}
.footer .copyright {
  font-size: .75rem;
  margin-top: .5rem;
  opacity: .6;
}


.footer .framebar {
  background-color: var(--blanc);
}
.footer, .footer a {
  /*color: var(--blanc);*/
}

.home .footer .framebar,
.page-field-recordings .footer .framebar ,
.page-videos .footer .framebar,
.page-credits .footer .framebar {
  /*background-color: var(--noir);*/
}
.home .footer, 
.home .footer a,
.page-field-recordings .footer, 
.page-field-recordings .footer a,
.page-videos .footer, 
.page-videos .footer a,
.page-credits .footer, 
.page-credits .footer a {
  /*color: var(--noir);*/
}















/*********************
BUTTONS
*********************/
.wp-theme-michel [type=button], 
.wp-theme-michel [type=reset], 
.wp-theme-michel [type=submit], 
.wp-theme-michel button {
  -webkit-appearance: button;
  background-color: transparent;
  border: 2px solid var(--noir80);
  padding: 0.7rem 2rem;
  border-radius: 5px;
  transition: all 250ms ease-in-out;
  color: var(--noir80);
}
.wp-theme-michel [type=button]:hover, 
.wp-theme-michel [type=reset]:hover, 
.wp-theme-michel [type=submit]:hover, 
.wp-theme-michel button:hover {
  color: var(--blanc);
  background-color: var(--noir);
}



/*********************
HERO
*********************/
.hero .thumb {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero .thumb img {
  width: 100vw;
  height: 100%;
    min-height: 100vh;
  object-fit: cover;
}





/*********************
HOME
*********************/
.home h1.page-title {
  font-size: 0;
  margin: 0;
  padding: 0;
  margin-left: -99999px;
}
.frame {
  min-height: calc(100vh - 10rem);
  /* display: flex; */
  /* padding: 5rem 0; */
  padding-top: 5rem;
  padding-bottom: 7rem;
}
.home .frame {
  align-items: center;
}
.has-large-font-size {
  /* font-size: var(--wp--preset--font-size--large) !important; */
  font-size: 1.75rem !important;
}
.video-wrapper {
  width: 100vw;
  height: 100vh;
  background-color: var(--noir);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is the key property */
  object-position: 25% top;
  opacity: 0; /* start hidden */
  animation: fadeIn 2s ease-in forwards;
  animation-delay: 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*********************
FIELD RECORDINGS
*********************/
.packages {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--noir);
  text-align: center;
}

.packages .item .thumb {
  margin-bottom: 2rem;
}

.swiper {
  width: 100vw;
  height: 100vh;
}
.swiper-slide {
  width: 100vw;
  height: 100vh;
}
.swiper-slide img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--blanc);
}
.swiper-pagination-bullet {
  background-color: var(--blanc);
}





.fieldrecordings .grid-sizer, 
.fieldrecordings .grid-item {
  width: calc( 33.3333% - 1.25rem);
 }
.fieldrecordings .gutter-sizer {
  width: 1.875rem;
}
.fieldrecordings .grid-item {
  margin-bottom: 2rem;
}







/*********************
VIDEOS
*********************/
.page-videos .videos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-videos .videos .item {
  display: flex;
      gap: 2rem;
  
}
.page-videos .videos .item .thumb { 
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 0;
}
.page-videos .videos .item .infos { 
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 0;
}
.page-videos .videos .item .title {
  font-size: 2rem;
  font-weight: 600;
  /*font-variation-settings: "wdth" 80;*/
}
.page-videos .videos .item .description {
  font-size: 1.25rem;
}





/*********************
CREDITS
*********************/
.page-credits .frame {
  padding-top: 20rem;
}

.page-credits #foo {
	width: 10px;
	height: 100%;
	/* background-color: red; */
	position: absolute;
	left: -10rem;
	
}
.page-credits .credits_frame {
  position: relative;
  display: block;
/* background-color: yellow; */
}
.page-credits .logo-mobygames-group {
	position: relative;
}
.page-credits .logo-mobygames-group .logo-mobygames-c {
	position: absolute;
	top: 0;
	transition: all 150ms ease-in-out;
	opacity: 0;
}
.page-credits .logo-mobygames-group:hover .logo-mobygames-c {
	opacity: 1
}
.page-credits .logo-imdb-group {
	position: relative;
}
.page-credits .logo-imdb-group .logo-imdb-c {
	position: absolute;
	top: 0;
	transition: all 150ms ease-in-out;
	opacity: 0;
}
.page-credits .logo-imdb-group:hover .logo-imdb-c {
	opacity: 1
}


.page-credits .credits_list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.page-credits .credits_list .item { 
  display: flex;
  gap: .25rem;
}
.page-credits .credits_list .item .title {
  width: 40%;
  padding: .75rem .5rem .75rem 1.125rem;
  color: var(--blanc);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: normal;
  display: flex;
  align-items: center;
}
.page-credits .credits_list .item .role {
  width: 7%;
  background-color: var(--noir05);
}

.page-credits .credits_list .item.headitem {
  background-color: var(--blanc);
}
.page-credits .credits_list .item.headitem .title {
	color: inherit;
}

.page-credits .credits_list .item.headitem .title ul {
	list-style: none;
	margin-left: .33rem;
	margin-bottom: 0;
}

.page-credits .credits_list .item.headitem .title ul li {
	display: flex;
	gap: 1rem;
	padding: .25rem 0;
}
.page-credits .credits_list .item.headitem .title ul li .icone svg {
	width: 1.75rem;
	height: 1.25rem;
}
.page-credits .credits_list .item.headitem .title ul li.vg {
	/*background-color: var(--bleu);*/
	color: var(--bleu);
}
.page-credits .credits_list .item.headitem .title ul li.vg .icone svg path {
	fill: var(--bleu);;
}
.page-credits .credits_list .item.headitem .title ul li.vr {
	/*background-color: var(--bleu);*/
	color: var(--vert);
}
.page-credits .credits_list .item.headitem .title ul li.vr .icone svg path {
	fill: var(--vert);;
}
.page-credits .credits_list .item.headitem .title ul li.ff {
	/*background-color: var(--bleu);*/
	color: var(--rouge);
}
.page-credits .credits_list .item.headitem .title ul li.ff .icone svg path {
	fill: var(--rouge);;
}
.page-credits .credits_list .item.headitem .title ul li.sf {
	/*background-color: var(--bleu);*/
	color: var(--orange);
}
.page-credits .credits_list .item.headitem .title ul li.sf:before {
	content: '';
	width: 1.75rem;
}
.page-credits .credits_list .item.headitem .role {
  padding: .25rem 1rem 1.5rem .25rem;
  line-height: normal;
  font-weight: 600;
  font-size: 0.875rem;
}


.page-credits .credits_list .item.vg .title,
.page-credits .credits_list .item.vg .role.active {
  background-color: var(--bleu);
}
.page-credits .credits_list .item.vr .title,
.page-credits .credits_list .item.vr .role.active {
  background-color: var(--vert);
}
.page-credits .credits_list .item.ff .title,
.page-credits .credits_list .item.ff .role.active {
  background-color: var(--rouge);
}
.page-credits .credits_list .item.sf .title,
.page-credits .credits_list .item.sf .role.active {
  background-color: var(--orange);
}


.page-credits .credits_list .item:not(.headitem) .title:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1.5rem;
  margin-right: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
}
.page-credits .credits_list .item.vg .title:before {
  background-image: url(../images/icon-VG.svg);
}
.page-credits .credits_list .item.vr .title:before {
  background-image: url(../images/icon-VR.svg);
}
.page-credits .credits_list .item.ff .title:before {
  background-image: url(../images/icon-FF.svg);
}

/*********************
CONTACT
*********************/
.page-contact .hero {
  position: absolute;
  z-index: -1;
}
.page-contact .frame {
  padding-top: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.page-contact h1.page-title {
  font-size: 0;
  margin: 0;
  padding: 0;
  margin-left: -99999px;
}
.page-contact .entry-content {
  /*width: 100%;*/
  /*background-color: var(--blanc80);*/
  /*padding: 3rem;*/
  
  
  	background-color: var(--blanc50);
	padding: 2rem 2rem 1.125rem;
	margin: -2rem;
	border-radius: 25px;
	/* backdrop-filter: blur(5px); */
	overflow: hidden;
	backdrop-filter: blur(10px);
	box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.05), inset 0 -2px 6px rgba(255, 255, 255, 0.1), 0 12px 27px rgba(0, 0, 0, 0.15);


}
.aroundtheframe {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.aroundtheframe .row {
  display: flex;
  gap: 2rem;
}


[type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 2.4375rem;
	margin: 0 0 1rem;
	padding: .5rem;
	border: 1px solid var(--noir25);
	border-radius: 5px;
	/*border-radius: 0;*/
	background-color: var(--blanc50);
	-webkit-box-shadow: inset 0 1px 2px rgba(10,10,10,.1);
	box-shadow: inset 0 1px 2px rgba(10,10,10,.1);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #0a0a0a;
	-webkit-transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
	transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
	transition: box-shadow .5s,border-color .25s ease-in-out;
	transition: box-shadow .5s,border-color .25s ease-in-out,-webkit-box-shadow .5s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.entry-content img {
  max-width: 100%;
  height: auto; }

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe; }
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #14679e;
    color: #fefefe; }

/*********************
IMAGE GALLERY STYLES
*********************/
.gallery {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-right: -15px;
  margin-left: -15px; }

.gallery::before, .gallery::after {
  content: ' ';
  display: table; }

.gallery::after {
  clear: both; }

.gallery.gallery-columns-1 > dl {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-1 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-2 > dl {
  width: 50%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-2 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-3 > dl {
  width: 33.33333%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-3 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-4 > dl {
  width: 25%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-4 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-5 > dl {
  width: 20%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-5 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-6 > dl {
  width: 16.66667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-6 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-7 > dl {
  width: 14.28571%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-7 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-8 > dl {
  width: 12.5%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-8 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
    float: right; }

.gallery dl {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.gallery dl:last-child:not(:first-child) {
  float: right; }

/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem; }

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar li {
  list-style: none; }

.widget ul {
  margin: 0; }






/*********************
VISUAL EDITOR STYLES
*********************/
body#tinymce {
  margin: 20px; }

/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0; }


/*********************
FANCYBOX
*********************/
.fancybox-skin {
	position: relative;
	background: var(--blanc50);
	
	border-radius: 20px;
	
	backdrop-filter: blur(10px);
	box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.05), inset 0 -2px 6px rgba(255, 255, 255, 0.1), 0 12px 27px rgba(0, 0, 0, 0.15);
}
.fancybox-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 100040;
	background-image: none;
	/*background-color: red;*/
}
.fancybox-close:before {
	content: '×';
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/*background-color: lime;*/
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
}


.fancybox-nav {
	position: absolute;
	top: 0;
	width: 20%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	/*background: rgba(254, 255, 0, 0.25);*/
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 100040;
}

.fancybox-nav:before {
	content: '';
	display: block;
	position: absolute;
	/*background-color: blue;*/
	width: 100%;
	height: 100%;
	transition: all 250ms ease-in-out;
	opacity: 0;
	
}
.fancybox-nav:hover:before {
	opacity: .3;
}


.fancybox-prev:before {
	background-image: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -ms-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
	background-image: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}
.fancybox-next:before {
	background-image: -webkit-linear-gradient(right, white 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -moz-linear-gradient(right, white 0%, rgba(255, 255, 255, 0) 100%);
	background-image: -ms-linear-gradient(right, white 0%, rgba(255, 255, 255, 0) 100%);
	background-image: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 100040;
	visibility: visible;
	opacity: .1;
	transition: all 250ms ease-in-out;
	
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.25rem;
}
.fancybox-nav:hover span {
	opacity: .8;
}

.fancybox-prev {
	left: 0;
}
.fancybox-prev span {
	left: 10px;
	/*background-position: 0 -36px;*/
	background-image: url(../images/icon-larrow.svg);
	
}

.fancybox-next {
	right: 0;
}
.fancybox-next span {
	right: 10px;
	/*background-position: 0 -72px;*/
	background-image: url(../images/icon-rarrow.svg);
}









/*********************
MEDIA QUERIES
*********************/

/* Small only */

@media screen and (max-width: 39.9375em) {
	
	.grid-container.full.hero {
		max-height: var(--mobileheight);
	}
	.video-wrapper {
		/*width: 100vw;*/
		height: var(--mobileheight);
		/*background-color: var(--noir);*/
		max-height: var(--mobileheight);
	}
	.video-wrapper video {
		object-position: 22% top;
	}
	.hero .thumb {
		overflow: hidden;
	}
	.hero .thumb img {
		width: 100vw;
		height: 100%;
		height: var(--mobileheight);
		min-height: var(--mobileheight);
		object-fit: cover;
		
		transform: scale(1.36);
    /* object-position: top center; */
    	transform-origin: top;
	}
	.header {
		padding-left: 2.4rem;
	}
	.top-bar {
		width: calc(100% - 5rem);
		font-size: 1rem;
		padding-top: 4rem;
	}
	.top-bar .top-bar-frame {
		padding: 1rem 1.25rem .5rem;
		position: relative;
		background-color: var(--blanc50);
		margin: -2.5rem;
		border-radius: 15px;
	}
	.top-bar .top-bar-frame:before {
		width: calc(100% + .75rem);
	}
	.top-bar .sitename a {
		margin-left: -1rem;
		font-size: 2rem;
	}
	.top-bar .sitemenu .menu {
		position: absolute;
		bottom: 0;
		/*right: 0;*/
		/*background-color: red;*/
		display: flex;
		justify-content: end;
		right: 0;
	}
		
	.top-bar .sitemenu .menu a {
		line-height: 1;
		text-decoration: none;
		display: block;
		padding: 1rem 1.5rem;
	}
		
	.top-bar .sitemenu a:hover, 
	.footer nav a:hover {
		color: var(--noir);
		background: transparent;
	/* background: var(--noir05); */
	/*text-shadow: 0px 0px 5px var(--noir50);*/

	}
	
	.off-canvas-content .frame {
		padding: 1.5rem 1.5rem 5rem;
	}
	
	.home .michelportrait {
		text-align: center;
	}
	.home .michelportrait img {
		width: 50vw;
	}
	
	
	.footer>.grid-container {
		padding: 1.5rem 1.5rem 3.5rem;
		width: calc(100% - 2.5rem);
		margin-bottom: -4rem;
		border-radius: 15px;
	}
	.footer .float-right {
		float: left!important;
		width: 100%;

	}
	.footer .float-left {
		float: none!important;
		width: 100%;

	}
	.footer .menu.siteident {
		flex-wrap: nowrap;
		font-size: 1.125rem;
		width: 110%;
		/*background-color: red;*/
	}
	.footer .menu.siteident li {
		display: flex;
		flex-wrap: nowrap;
		white-space: nowrap;
	}
	.footer .description {
		line-height: 1;
		text-decoration: none;
		display: block;
		padding: .7rem 1rem;
		margin-left: -1rem;
		/*background-color: yellow;;*/
		
	}
	.footer nav .menu {
		width: 100%;
		flex-wrap: nowrap;
		justify-content: space-between;
		margin-left: -0.25rem;
	}	
	.footer nav .menu a {
		font-size: .75rem;
		padding: .5rem .5rem;
		border-radius: 10px;
	}	
	.footer .copyright {
		font-size: .66rem;
	}
	
	.swiper {
		/*width: 100vw;*/
		height: var(--mobileheight);;
		/*background-color: var(--noir);*/
		max-height: var(--mobileheight);;
	}
	.swiper-slide {
		pointer-events: none;
		transition-property: opacity;
		height: 120%;
	}
	h1 {
		font-size: 1.75rem;
	}
	h2 {
		font-size: 1.5rem;
	}
  .page-field-recordings .wp-block-columns.forcenowrap {
    flex-wrap: nowrap!important;
	/*opacity: .4;*/
  }
  .page-field-recordings .wp-block-columns.forcenowrap .wp-block-column.crowcolumnwidth {
  	flex-grow: 1	!important;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
	flex-basis: auto!important;
	}
	.fieldrecordings .grid-sizer, 
	.fieldrecordings .grid-item {
	width: calc( 33.3333% - 1rem);
	}
	.fieldrecordings .gutter-sizer {
	width: 1.25rem;
	}
	.fieldrecordings .grid-item {
	margin-bottom: 1rem;
	}
  
  	.page-videos .videos {
  		gap: 3rem;
  	}
  	.page-videos .videos .item.fancybox {
  		gap: 1rem;
  	}
  	.page-videos .videos .item .title {
	font-size: 1.5rem;
	line-height: normal;
	font-weight: 600;
	/* font-variation-settings: "wdth" 80; */
	margin-bottom: .5rem;;
	}
	.page-videos .videos .item .description {
		font-size: 1rem;
	}
  	.page-videos .item.fancybox {
  		flex-direction: column;
  		margin-bottom: 0;
  		gap: 2rem;
  	}
  	
  	.page-credits .content {
  		padding-top: 12rem;
  	}
  
  	.page-credits .creditsblock-top {
  		/*background-color: yellow;*/
  	}
  
  	.page-credits .externallinks {
  		display: grid;
		grid-template-columns: 1fr 0 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 1.5rem;
  	}
  	.creditsblock-top {
  		grid-column: 1 / -1;
  	}
  	
  	.page-credits .sticky-container .item.headitem:before {
/*  		content: '';
		display: block;
		position: absolute;
		width: 100%;
		height: 10rem;
  		background-color: rgba(255, 0, 0, 0.16);
  		top: -4rem;*/
  	
  	}
  	.page-credits .credits_list .item.headitem {
  		/*margin-bottom: 1rem;*/
  		padding-bottom: .0;
  		
  	}
  	.page-credits .credits_list .item.headitem .role {
		padding: .25rem 1rem 1.5rem .25rem;
		line-height: normal;
		font-weight: 600;
		font-size: 0.875rem;
		
		display: flex;
		justify-content: start;
		align-items: end;
		
		
	}
  	
  	.page-credits .credits_list .item.headitem .role span{
		font-size: 0.75rem;
		margin-bottom: -1rem;
		transform: rotate(-90deg);
		transform-origin: .5rem 50%;
		white-space: nowrap;
		line-height: 1;
	}

	  	
  	.page-credits .credits_list .item .role {
  		flex-grow: 0;
		flex-shrink: 0;
  	}
  	.page-credits .credits_list .item .title {
		width: 36%;
		padding: .5rem .33rem .5rem .5rem;
		color: var(--blanc);
		font-weight: 700;
		font-size: .875rem;
		line-height: 1.2;
		display: flex;
		align-items: stretch;
		flex-grow: 0;
		flex-shrink: 0;
	}
  	.page-credits .credits_list .item.headitem .title {
  		/*padding-left: 0;*/
		padding: 3.5rem .33rem .5rem .0;
  	}
	.page-credits .credits_list .item.headitem .title ul li {
		display: flex;
		gap: .5rem;
		padding: .25rem 0;
		font-size: .875rem;
		line-height: 1;
		
	}
	.page-credits .credits_list .item.headitem .title ul li .icone svg {
		width: 1.12rem;
		height: 1rem;
	}
	.page-credits .credits_list .item.headitem .title ul li.sf:before {
		content: '';
		width: 1.12rem;
	}
	.page-credits .credits_list .item:not(.headitem) .title:before {
		content: '';
		display: inline-block;
		width: 1.125rem;
		height: 1.25rem;
		margin-right: .5rem;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 1.125rem;
		flex-grow: 0;
		flex-shrink: 0;
	}
	
	
	
	
	
  	.page-contact .frame {
		padding-top: 12.5rem;
		padding-left: 3rem;
  		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: start;
  		padding-right: 3.25rem;
  		padding-bottom: 6rem;
  	}
  	
  	.aroundtheframe .row {
	    gap: 0.5rem;
	    flex-direction: column;
	}
	.page-contact .entry-content {
		border-radius: 15px;
	}
	.page-contact .footer .float-left, .page-contact .footer .float-right {
		display: block;
	}
	.page-contact .grid-container.full.hero {
		max-height: 100vh;
	}
	.page-contact .hero .thumb {
		position: fixed;
	}
	.page-contact .hero .thumb img {
		width: 100vw;
		height: 100%;
		/*height: 100vh;*/
		min-height: 100vh;
		object-fit: cover;
	}
  
  .off-canvas {
    padding: 1rem 2rem 4rem 0;
  }
  .off-canvas .siteident {
  	margin-left: 1.5rem;
  }
  
  .off-canvas .siteident .sitename a {
  	margin-left: -1rem;  
  	font-size: 1.33rem;
  	font-weight: 600;
  }
  .off-canvas .siteident .sitename a:focus {
  	outline: none;
  	color: var(--n0ir80);
  }
  .off-canvas .siteident .description {
  	margin-left: 0;  
  	margin-bottom: 2rem;
  } 
  .off-canvas .accordion-menu {
  	padding-right: 2rem;
  }
  .off-canvas .accordion-menu a {
	padding: .7rem 1rem .7rem 1.5rem;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	
  }
		
}

/* For general iPad layouts */

@media only screen and (device-width: 768px) {
	
}

/* For portrait layouts only */

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
	
}
/* For landscape layouts only */

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
	
}

/* Medium and up */

@media screen and (min-width: 40em) {
	
}

/* Medium only */

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
	
}

/* Large and up */

@media screen and (min-width: 64em) {
	
}

/* Large only */

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
	
}

























































/*/