/*
Theme Name: Akatre 2.0
Author: Pablo Prieto modified by Francis Josserand
Author URI: http://pabloprieto.net/ - https://www.francisjosserand.fr/
Text Domain: akatre
*/

@font-face {
  font-family: "Vitrail Serif";
  src: url("fonts/VitrailSerif-Regular.woff2") format("woff2"), url("fonts/VitrailSerif-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Vitrail Sans";
  src: url("fonts/VitrailSans-Regular.woff2") format("woff2"), url("fonts/VitrailSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Vitrail Akatre";
  src: url("fonts/VitrailAkatre-Regular.woff2") format("woff2"), url("fonts/VitrailAkatre-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}


/* nouvelles fontes */

@font-face {
  font-family: "courier";
  src: url("fonts/Courier-New.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ErtakaNeue Bold";
  src: url("fonts/ErtakaNeue-Bold.woff2") format("woff2"), url("fonts/ErtakaNeue-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ErtakaNeueDisplay Bold";
  src: url("fonts/ErtakaNeueDisplay-Bold.woff2") format("woff2"), url("fonts/ErtakaNeueDisplay-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}


@-webkit-keyframes closeIconTop {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0px, 0) rotate(0deg);
            transform: translate(0px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(45deg);
            transform: translate(0, 0) rotate(45deg);
  }
}

@keyframes closeIconTop {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0px, 0) rotate(0deg);
            transform: translate(0px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(45deg);
            transform: translate(0, 0) rotate(45deg);
  }
}

@-webkit-keyframes closeIconBottom {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0px, 0) rotate(0deg);
            transform: translate(0px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-45deg);
            transform: translate(0, 0) rotate(-45deg);
  }
}

@keyframes closeIconBottom {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0px, 0) rotate(0deg);
            transform: translate(0px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-45deg);
            transform: translate(0, 0) rotate(-45deg);
  }
}

:root {
  --global-margin-top: 50px;
    overflow: auto;

    --color-black: black;
    --color-white: white;
    --color-darkgrey: #303030;
    --color-grey: #CDCDCD;
    --color-lightgrey: #f7f7f5 ;
    
    
    --speed: 300ms;

    --font-labeur: 12px;
    --font-medium:16px;
    --font-title: 26px;


    

}








/* ---- Reset ---- */

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html.smooth {
  scroll-behavior: smooth;
}

html.snap {
  -webkit-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background: var(--color-black);
  font-family: "courier";
  font-size: 43px;
  line-height: 50px;
  color: var(--color-lightgrey);
  transition: background-color 200ms;
}


body.lock-scroll{
  overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

fieldset {
  min-width: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  -webkit-hyphens: none;
  hyphens: none;
  quotes: none;
}

a:hover,
a:active {
  outline: 0;
}

a img {
  border: 0;
}

input:focus {
  outline: none;
}

input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

/* ---- Typo ---- */

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: normal;
  letter-spacing: 0px;
}

p {
  margin-bottom: 1em;
}

b,
strong {
  font-weight: 700;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

code,
kbd,
tt,
var,
samp,
pre {
  font-family: Inconsolata, monospace;
  -webkit-hyphens: none;
  hyphens: none;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}


::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    border-radius: 2px;
    background-color: transparent;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: transparent;
    width: 3px;
    height: 3px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--color-white); 
    border-radius: 2px;
}



.tooltipster-box {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  max-width: 600px;
  text-align: center !important;
    opacity: 0 !important;
}

.tooltipster-content {
  overflow: visible !important;
  color: var(--color-black) !important;
  line-height: 1.2em !important;
  font-family: "Vitrail Sans", sans-serif;
}

.project-open {
  height: 100%;
  overflow: hidden;
}

.visible-xs-block,
.visible-xs-inline-block {
  display: none;
}

.site-header {
  position: fixed;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0px 20px 0px;
  height: auto;
  z-index: 2;
}

.inside-header{
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
    display: flex;
}

.site-header.opaque {
  background: white;
}

.site-title {
  font-family: "ErtakaNeueDisplay Bold";
    text-transform: uppercase;
    font-size: var(--font-title);
    line-height: 28px;
    width: calc(33.33% - 30px);
    margin-right: 0;
    position: relative;
    float: left;
    margin-right: 15px;
    margin-left: 0px;
	letter-spacing: 1px;
}

.single-post .site-header,
.project-open .site-header {
  opacity: 0;
}

.site-header .cart-toggle {
  display: none;
  width: 1em;
  text-align: right;
  margin-left: 40px;
}

.site-header .top,
.site-header .bottom {
  -webkit-transform-origin: 21px 35px;
          transform-origin: 21px 35px;
}

.site-nav-open .site-header .menu-close .top {
  -webkit-animation: closeIconTop linear 200ms forwards;
          animation: closeIconTop linear 200ms forwards;
}

.site-nav-open .site-header .menu-close .bottom {
  -webkit-animation: closeIconBottom linear 200ms forwards;
          animation: closeIconBottom linear 200ms forwards;
}

.category-store .site-header .cart-toggle {
  display: inline-block;
}

.category-store .slick-prev.slick-arrow, .category-store .slick-next.slick-arrow{
    display: none !important;
}

.site-nav {
    text-transform: uppercase;
    margin-left: 0px;
    margin-right: 0px;
    position: relative;
    float: left;
    width: calc(66.66% - 0px);
    margin-left: 15px;
}

.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
  /* font-family: "Vitrail Sans", sans-serif; */
}

/* .site-nav .current-menu-item::before, .site-nav .current-menu-ancestor::before{
    content: "_";
    transform: none !important;
} */



.site-nav .menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
}

.site-nav .menu {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

.site-nav .menu a {
  /* display: block; */
}

.site-nav .menu-item {
    margin-right: 0px;
    font-family: "ErtakaNeueDisplay Bold";
    text-transform: uppercase;
	letter-spacing: 1px;
    font-size: var(--font-title);
    line-height: 28px;
    display: flex;
    margin-bottom: -2px;
    padding-bottom: 2px;
}

.site-nav .menu-item a{
    display: block;
    color: var(--color-darkgrey);
    transition: all var(--speed);
}

.home .site-nav .menu-item a{
	color: var(--color-white);
}


.site-nav  .current-menu-item a{
    color: var(--color-white);
}


.site-nav  .current-menu-item .sub-menu a{
    color: var(--color-darkgrey);
}

.site-nav .menu-item a:hover{
    color: var(--color-white);
}


.site-nav .menu-item::before{
    transform: translate3d(0, 0, 0);
}

.site-nav .menu-item:last-child {
  margin-right: 0;
}

.site-nav .menu .sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  z-index: 1000;
}

.site-nav .menu .current-menu-item .sub-menu,
.site-nav .menu .current-menu-ancestor .sub-menu {
  display: none;
}

.menu_separator{
  opacity: 0;
  flex: 1;
  pointer-events: none;
}


.site-nav .social-links {
  display: none;
}

.site-nav .social-links li {
  display: inline-block;
  margin-right: 10px;
}

.site-nav .social-links a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  padding: 10px;
}

.site-nav .social-links img {
  vertical-align: top;
}

.site-header .form-search input,
.site-header .form-search button,
.site-header .form-search img {
  display: inline-block;
  vertical-align: top;
  background: transparent;
}

.site-header .form-search input {
  display: none;
  padding: 0;
  margin: 0;
  line-height: inherit;
  border: none;
  text-align: right;
  max-width: 8em;
}

.site-header .form-search button {
  font-family: "ErtakaNeueDisplay Bold";
    text-transform: uppercase;
    font-size: 67.5px;
    line-height: 50px;
	letter-spacing: 1px;
}

.hidden-xs{
    position: absolute;
    right: 16px;
}

.site-header .form-search.open input {
  display: inline-block;
    font-family: "ErtakaNeue Bold";
    font-size: 20px;
    line-height: 25px;
}

.site-header .form-search.open button {
  display: none;
}

.pagination {
  display: none;
}

.no-results {
  padding: var(--global-margin-top) 16px;
}

.grid-container {
  padding: var(--global-margin-top) 0;
}

.grid-items{
    margin-left: 0px;
    margin-right: 16px;
    width: calc(100% - 16px);
}

.list-container {
  padding: var(--global-margin-top) 16px 16px 16px;
}

.project-item {
  line-height: 1em;
}

.grid-container .project-item {
  width: calc(33.33% - 0px);
  font-size: var(--font-medium);
  text-align: left;
  padding-left: 16px;
}


.grid-container .project-item-video {
  width: calc(66.66% - 0px);
  font-size: var(--font-medium);
  text-align: left;
  padding-left: 16px;
}


.grid-container .project-item-video a {
	overflow: hidden;
}

.grid-container .project-item-video iframe {
	transform: scale(150%) !important;
	transform-origin: 50% 50% !important;
}



.category-design .grid-container .project-item-video {
  width: calc(33.33% - 0px);
  font-size: var(--font-medium);
  text-align: left;
  padding-left: 16px;
}

.list-container .projet-title-archives a{
  cursor: auto;
}

.list-container .projet-title-archives:hover{
  background-color: transparent !important;
  color: var(--color-black) !important;
}

.list-container .project-item {
  text-transform: uppercase;
  font-family: "ErtakaNeue Bold";
  font-size: var(--font-labeur);
  line-height: 1.2;
  position: relative;
}


.list-container .project-item:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.project-item a {
  padding: 2px 0 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 10px;
}



.list-container .project-item a .date{
  flex: 1;
}

.list-container .project-item a .title{
  flex: 2;
}

.list-container .project-item a .category{
  flex: 1;
}





.grid-container .project-item:hover .title{
  color: var(--color-white) !important;
}

.project-item.disabled a {
  cursor: default;
}

/* .list-container .list-items {
  border-top: 1px solid var(--color-black);
} */

.list-container .project-item {
  border-bottom: 1px solid var(--color-black);
}

.project-item img{
    vertical-align: top;
    margin-left: 0px;
    width: calc(100% - 0px);
    height: auto;
	object-fit: cover;
}

.project-item iframe {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100% !important;
  pointer-events: none;
  width: calc(100% - 0px);
    padding-left: 0px;
    padding-right: 0px;
}


.project-item iframe {
  min-width: 100%;
  min-height: 100% !important;
}

.project-item.loaded iframe {
  visibility: visible;
}

.touchevents .project-item iframe {
	top: -1px;
	display: block;
	width:100% !important;
	height: calc(100% + 1px) !important;
/* 	visibility: visible; */
}

.list-container .project-item .sep {
  display: inline-block;
  margin: 0 8px;
}

.grid-container .project-item .title {
  padding: 5px 0;
}

.pointerevents .grid-container .project-item .title {
  display: block;
    position: relative;
    float: left;
    height: auto;
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-labeur);
    margin: -5px 0 0px 0;
    padding-bottom: 0;
    width: calc(100% - 0px);
    color: var(--color-darkgrey);
    transition: all var(--speed);
    text-transform: uppercase;
}

.grid-count{
    float: right;
}

.post {
  position: relative;
  padding: var(--global-margin-top) 16px 16px;
}

.post iframe {
  vertical-align: top;
  max-width: 100%;
}

/* .post .content {
  -webkit-flex: 1;
          flex: 1;
} */

.post .close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 12;
    line-height: 1;
    width: 80px;
}

.post .close svg{
  fill: white;
}

.post-project {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  z-index: 4;
  height: 100%;
  overflow: hidden;
}

.post-project:after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-black);
  transition: opacity 200ms 200ms;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.post-project.loaded:after {
  opacity: 1;
}

.post-project .nav {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 16px;
  z-index: 3;
  margin-bottom: -5px;
  text-transform: uppercase;
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-medium);
    line-height: 25px;
    padding-top: 0px;
}

.post-project .nav button {
  text-transform: uppercase;
}



.post-project.format-video {
  color: #fff;
}

.post-project.format-video svg{
    fill: #fff;
}

.post-project.format-video:after {
  background: var(--color-black);
}

.post-project .slides,
.post-project .content {
  position: fixed;
  top: 16px;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.post-project .slides{
    z-index: 0;
}

.slick-arrow{
    position: fixed;
    z-index: 9999;
    height: calc(100vh - 130px);
    width: 17%;
    opacity: 0;
}

.slick-prev.slick-arrow{
    left: 16px;
    top: 16px;
}

.slick-prev.slick-arrow:hover{
    cursor: w-resize;
}

.slick-next.slick-arrow{
    right: 16px;
    top: 90px;
    height: calc(100vh - 170px);
}

.slick-next.slick-arrow:hover{
    cursor: e-resize;
}

.post-project .slides div {
    height: 100%;
    /* width: auto; */
}

.post-project.post-store .slides div {
  height: 100%;
    width: calc(33.33vw - 60px);
}

.post-project .slides .slide-item {
  padding: 0px;
}

.post-project .slides .slide-item.vid{
    width: calc(100vw - 60px) !important;
}

.post-project .slides .slide-item .wrapper {
    position: relative;
}

.post-project .slides img,
.post-project .slides iframe {
  display: block;
  outline: none;
  border: none;
}

.post-project .slick-slide{
    height: calc(100vh - 24px) !important;
}

.post-project .slides img{
    width: auto !important;
    height: 100% !important;
    margin-right: 16px;
}

.post-project .content {
  display: none;
  padding: 0px 16px 16px 16px;
  background: var(--color-black);
  overflow-y: auto;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
  width: 40%;
    right: 0px;
    left: auto;
    margin-top: -16px;
}

.post-project.format-video .content {
  background: var(--color-black);
    scrollbar-width: none;  /* Firefox */
}

.post-project.format-video .content::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.post-project.format-video .content div{
    font-family: "courier";
  margin-left: 0px;
  font-size: var(--font-medium);
  line-height: 19px;
    margin-bottom: 19px;
    margin-top: 0px;
}

.post-project .content > * + * {
  margin-top: 18px;
  margin-bottom: 0;
}

.post-project .content h1{
    font-family: "ErtakaNeueDisplay Bold";
    font-size: var(--font-title);
    line-height: 28px;
    margin-bottom: 16px;
    margin-right: 110px;
    width: calc(100% - 110px);
    text-transform: uppercase;
    margin-top: 11px;
}

.post-project .content p {
    font-family: "courier";
  margin-left: 0px;
  font-size: var(--font-medium);
  line-height: 16px;
    margin-bottom: 19px;
    margin-top: 0px;
}

.post-project .gallery {
  margin-top: 90px;
    display: none;
}

.post-project .gallery .gallery-item {
  display: inline-block;
  padding: 0 10px 10px 0;
}

.post-project .gallery img {
  cursor: pointer;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.post-audio {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-evenly;
          justify-content: space-evenly;
  padding-top: 162px;
  padding-bottom: 0;
  margin-right: 16px;
  box-sizing: border-box;
  --audio-content-height: 435px;
}

.post-audio .wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: flex-start;
          align-items: flex-start;
/*   height: calc(33.33vw - 50px); */
}

.post-audio .content{
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
	text-transform: uppercase;
	position: relative;
	max-height: 60vh;
}

.post-audio .content::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}


.post-audio .slides,
.post-audio .content {
  height: 100%;
}

.post-audio .slides {
  position: relative;
  width: var(--audio-content-height);
}

.slides .slide-item {
  overflow: hidden;
  cursor: pointer;
}

.slides .slick-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}

.slick-dots button {
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  position: relative;
  text-indent: 30px;
}

.slick-dots button::before {
  content: "";
  text-indent: 20px;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
  transition: background-color 300ms;
  position: absolute;
  top: 10px;
  left: 10px;
}

.slick-dots .slick-active button::before {
  background: var(--color-black);
}

.counter:hover{
    cursor: pointer;
}

.post-audio .content {
  /* -webkit-flex: 0 1 600px;
          flex: 0 1 600px;
  overflow: auto;
  padding-right: 10px; */
}

.post-audio .content h1 {
  font-family: "Vitrail Sans", sans-serif;
  margin-bottom: 1em;
  margin-top: -8px;
}

.post-audio .content p,
.post-audio .content ul {
  font-size: var(--font-title);
  line-height: 40px;
}

.post-store .content .gallery,
.post-audio .content .gallery {
  display: none;
}

.post-audio .content :last-child {
  margin-bottom: 0;
}

.post-audio .links {
  font-size: var(--font-title);
  line-height: 40px;
  height: 40px;
  text-align: center;
}

.post-audio .links * {
  display: inline;
}

.post-audio .slides img {
  vertical-align: top;
  max-height: none;
  width: 100%;
    height: auto;
}

.post-page {
  padding-top: 196px;
  position: relative;
  min-height: 100vh;
  display: -webkit-flex;
  display: flex;
}

.post-page p,
.post-page ul,
.post-page ol,
.post-page form {
  font-size: var(--font-title)
  line-height: 40px;
  margin-left: 64px;
}

.post-page .content,
.post-page .aside {
  -webkit-flex: 1;
          flex: 1;
  max-width: 1700px;
}

.post-page .content,
.post-page .aside {
  padding: 0 44px;
}

.post-page > * > * + h1 {
  margin-top: 50px;
}

.post-page h1,
.post-page h2,
.post-page h3 {
  font-family: "Vitrail Sans", sans-serif;
  text-transform: uppercase;
}

.post-store {
  padding: 0;
  background-color: #d5d6cb;
}

.post-store::after {
  background-color: #d5d6cb;
}

.post-store .close,
.post-store .nav {
  position: fixed;
}

.post-store .aside,
.post-store .content {
  background-color: #d5d6cb;
}

.post-store .aside {
  height: 100%;
  width: 33.33%;
  padding: 0px;
}

.post-store .slides {
  position: relative;
  margin: 0 auto;
  height: auto;
}

.post-store .slides .slide-item {
  padding: 0;
}

.post-store .slides img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
    object-position: left top;
}

.post-store .content {
  display: block;
  left: calc(33.33% + 35px);
  padding-left: 0;
  padding-right: 0px;
  padding-top: 0px; /* -8px alignement avec la typo */
    width: calc(66.66% - 45px);
    scrollbar-width: none;  /* Firefox */
}


.post-store .content::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.post-store .content .deux-col .col-1 {
    position: relative;
    float: left;
    width: 50%;
}

.post-store .content .deux-col .col-1.buy{
    width: calc(50% - 40px);
    margin-left: 40px;
}

.post-store .content p img {
  max-width: 180px;
  max-height: 180px;
  width: auto;
  height: auto;
  margin-right: 16px;
}

.post-store .item_thumb {
  display: none;
}

.cart-quantity {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  padding: 16px;
}

.cart {
  --cart-row-height: 264px;

  display: -webkit-flex;

  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;


width: 50%;
position: relative;
margin: auto;
}

.cart table {
  table-layout: fixed;
  width: auto;
    border-collapse: collapse;
}

.cart thead {
  display: none;
}

.cart th,
.cart td {
  vertical-align: top;
}

.cart .itemRow td {
  /* padding-bottom: 64px; */
  padding-right: 64px;
}

.cart .item-name {
  max-width: 580px;
}

.cart .item-name > div {
  display: block;
    width: 100%;
}

.cart .item-name .title, .cart .item-name .quantity-wrapper{
    position: relative;
    /* float: left; */
    width: auto;
}

.cart .item-name .quantity-wrapper{
    /* float: right; */
    padding: 75px 0;
    margin-right: 10px;
    font-size: var(--font-title);
    line-height: 28px;
}

.cart .item-name .title{
    margin-right: 16px;
    max-width: calc(100% - 160px);
    text-transform: uppercase;
    font-size: var(--font-title);
    line-height: 28px;
}

.cart .item-thumb img {
  margin: auto;
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.cart .quantity-wrapper > * {
  display: inline-block;
  vertical-align: top;
    padding-left: 5px;
    padding-right: 5px;
  text-align: center;
}

.cart .total {
  margin-left: auto;
  margin-bottom: 64px;
}

.cart .total th,
.cart .total td {
  text-align: right;
}

.cart .total th {
  padding-right: 16px;
    padding-bottom: 25px;
}

.cart .total tr:last-child > * {
  padding-top: 25px;
}

.cart .checkout {
    margin-left: calc(20vw + 16px);
}

.btn {
  display: inline-block;
  font: inherit;
  font-family: "Vitrail Sans", sans-serif;
  line-height: 1em;
  text-transform: uppercase;
}

input:focus {
  cursor: text;
}

input::-webkit-input-placeholder {
  color: inherit;
}

input:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: inherit;
}

.form-newsletter input {
  display: inline-block;
  font: inherit;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
  border: none;
  margin: 0;
  padding: 0;
  outline: none !important;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  background: transparent;
}

.form-newsletter input:invalid,
.form-newsletter input:-moz-ui-invalid {
  outline: none;
  box-shadow: none;
}

.form-newsletter input[type="submit"] {
  display: none;
}

.home-intro {
  position: fixed;
  background: var(--color-black);
  color: #fff;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 50000;
  pointer-events: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: left;
  line-height: 1em;
  font-size: 7vw;
  opacity: 0;
  transition: opacity var(--speed);
}

.home-intro.in {
  opacity: 1;
  pointer-events: auto;
}

.home-intro > * {
  width: 100%;
}



.home-intro .first_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  -webkit-justify-content: start;
          justify-content: start;
  -webkit-align-items: start;
          align-items: start;
  text-align: left;
  transition: opacity var(--speed) ease-out;

  opacity: 1;
  pointer-events: none;

}

.home-intro .first_appear img{
  width: auto;
  height: calc(100% - 40px);
}


.home-intro .second_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: left;
  transition: opacity var(--speed);

  opacity: 0;
  pointer-events: none;
}

.home-intro .second_appear p{
  font-family: "ErtakaNeueDisplay Bold";
  text-transform: uppercase;
  text-align: center;
  font-size: 46px;
  line-height: 40px;
  color: var(--color-black);
	letter-spacing: 1px;
}



.home-intro .third_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: left;
  transition: opacity var(--speed) ease-out;

  opacity: 0;
  pointer-events: none;

}




.home-intro .third_appear img{
  width: 300px;
  height: auto;
}



.home-intro img {
    height: calc(100% - 52px);
    width: calc(100% - 52px);
    margin-left: 26px;
    margin-top: 26px;
    object-fit: contain;
    object-position: top left;
}

.home-intro img.bckgrnd{
    display: block;
    position: absolute;
    z-index: -1;
    object-fit: cover;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.home-intro video{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.category-soundtracks .post-audio {
  scroll-snap-align: start;
}



.category-soundtracks .site-header{
    opacity: 1 !important;
    display: block !important;
}

.soundtracks-nav {
  position: fixed;
  right: 0;
  top: 50%;
  padding-right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.soundtracks-nav li + li {
  margin-top: 5px;
}

.soundtracks-nav a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 18px;
  height: 18px;
}

.soundtracks-nav a span {
  text-indent: 20px;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
  transition: background-color 300ms;
}

.soundtracks-nav a:hover span,
.soundtracks-nav .active span {
  background: var(--color-black);
}





/* Exhibition */

.post-audio{
    /* padding-top: 260px; */
        padding-top: 0px;
}

.post-audio, .post-audio .wrapper{
    display: flex;
    justify-content: center;
	align-content: center;
}

/* 
.post-audio .wrapper {
    display: block;
    height: 100vh;
} 
*/


.post-audio .slides{
    margin-right: 15px;
    width: calc(25% - 15px);
    position: relative;
    float: left;
}

.post-audio .content{
    overflow: auto;
    padding-right: 0px;
    width: calc(25% - 16px);
    margin-left: 16px;
    position: relative;
}

.post-audio .content .deux-col .col-1{
    /* position: relative;
    float: left;
    width: 50%; */
}


.post-audio .links {
    font-size: var(--font-title);
    line-height: 40px;
    text-align: left;
	height: auto;
}

.post-audio .links p{
     /* margin-left: 42px;
    position: relative;
    float: left; */
}

.post-audio .content h1{
    font-family: "ErtakaNeueDisplay Bold";
    font-size: var(--font-title);
    line-height: 28px;
    margin-top: 1em;
    /*word-break: break-word;*/
    text-transform: uppercase;
    
}

.post-audio .content p, .post-audio .content ul, .post-audio .links{
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-labeur);
    line-height: 15px;
}

.post-audio .content .links{
	position: absolute;
	bottom: 12px;
	left: 0;
	
}

.post-audio .content .links p{
    color: var(--color-grey);
    font-size: var(--font-labeur);
    line-height: 15px;
}

.post-audio .content .links a{
    transition: all var(--speed);
}
.post-audio .content .links a:hover{
    color: var(--color-black);
}

/* page about */

.page-about .post-page{
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: var(--global-margin-top);
}

.page-about .content{
    column-count: 2;
    column-gap: 16px;
    padding: 0;
    width: calc(66.66% - 16px);
    position: relative;
    float: left;
    margin-right: 15px;
    margin-left: 15px;
}

body.page-about .content h1, body.page-about .content *, body.page-about .content p{
  font-size: var(--font-labeur);
  line-height: 15px;
}

body.page-about .content p, body.page-about .content ul{
	margin-bottom: 15px !important;
	line-height: 15px !important;
}

.page-about .post-page .col-1 form{
	margin-top: -2px;
	margin-bottom: 0 !important;
	line-height: 15px !important;
}


.page-about .content.full{
    width: calc(100% - 0px);
    column-count: 1;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0px;
}

.page-about .content.full a{
	color: var(--color-white) !important;
}

.page-about .content .col-1{
    position: relative;
    float: left;
    width: calc(25% - 16px);
    margin-left: 0px !important;
    margin-right: 15px !important;
	text-transform: uppercase;
}


.page-about .content .col-1 h1{
	letter-spacing: 0;
}




.page-about .aside{
    padding: 0px;
    width: calc(33.33% - 16px);
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
    float: left;
}

.page-about .content p, .page-about .content h1, .page-about .content ul, .page-about .aside p, .page-about .aside h1, .page-about .post-page .aside h2, .page-about .post-page .aside ul, .page-about .post-page .aside form, .page-about .content .col-1, .page-about  p, .page-about .col-1 h1, .page-about .post-page .col-1 h2, .page-about .post-page .col-1 ul, .page-about .post-page .col-1 form{
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-medium);
    line-height: 25px;
    margin-bottom: 33.5px;
    margin-left: 0px;
}

.page-about .content h1, .page-about .aside h1, .page-about .post-page .aside h2, .page-about .col-1 h1, .page-about .post-page .col-1 h2{
    margin-bottom: 17px;
}

.active_list{
	color: var(--color-white) !important;
}

.post-page .col_title h1{
  color: var(--color-darkgrey);
  transition: all var(--speed);  
  margin: 0;
  cursor: pointer;
}

.post-page .col_title h1:hover{
  color: var(--color-white);
}

.post-page .col_ul{
  position: relative;
}

.post-page .col_ul ul{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--speed);
}




/* single cart */

.post-project .content.simpleCart_shelfItem p{
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-medium);
    line-height: 25px;
	letter-spacing: 1px;
}

.btn{
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-medium);
    line-height: 25px;
    padding: 14px 24px;
    background-color: var(--color-black);
    color: #d5d6cd;
}

.post-newstore  .content h1{
  margin-top: 0;
}

.post-newstore .slides{
	height: fit-content;
	cursor: ew-resize;

}

.post-newstore .btn{
  background-color: transparent;
  font-size: var(--font-labeur);
  line-height: 15px;
  color: var(--color-black);
  padding: 0;
  transition: all var(--speed);
}

.post-newstore .btn:hover{
  color: var(--color-white);
}


.post-newstore .slick-list{
	max-height: 30vh;
	overflow: hidden;
}

.nav-newstore {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
    margin-bottom: -5px;
    text-transform: uppercase;
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-medium);
    line-height: 25px;
    padding-top: 0;
	letter-spacing: 1px;
}


.flex-price{
  display: flex;
  justify-content: space-between;
}

.flex-price img{
  display: none;
}
/* page carte */

.cart{
    display: block;
    margin-bottom: 150px;
}

.cart table{
    width: 100%;
}

.simpleCart_items{
    /* border-bottom: solid 1px; */
    margin-bottom: 25px;
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-medium);
    line-height: 25px;
	letter-spacing: 1px;
}

.simpleCart_items tr{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 20vw;
    box-sizing: border-box;
    margin-bottom: 50px;
}

 .cart .simpleCart_items .itemRow td.item-thumb{
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: calc(20vw - 10px);
  height: 100%;
  padding: 0;
}

.cart .simpleCart_items .itemRow td{
  width: auto;
}

tr.itemRow{
    /* padding-bottom: 40px; */
    /* border-top: solid 1px; */
}

tr.filet{
    /* border-top: solid 1px; */
    font-family: "ErtakaNeue Bold";
}

.cart .itemRow td{
    /* padding-bottom: 40px; */
    width: 33.33%;
    padding-right: 0px;
    padding-left: 10px;
    vertical-align: middle;
}

.cart .itemRow td.item-total{
    padding-left: 16px;
    text-align: left;
    font-size: var(--font-labeur);
    line-height: 15px;
}

.cart .itemRow td.item-thumb{
    padding-left: 0px;
    padding-top: 40px;
}

.post-page.post-cart{
    display: block;
    position: relative;
    float: left;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    font-size: var(--font-labeur);
    line-height: 15px;
}

.post-page.post-cart .content{
    padding: 0px;
    max-width: none;
}

.cart .total{
    margin-bottom: 0;
    font-size: var(--font-labeur);
    line-height: 15px;
    border-collapse: collapse;
    
}

.cart .quantity-wrapper .simpleCart_decrement{
    min-width: 20px;
}

.cart .total th{
    width: calc(20% - 30px);
    margin-left: calc(20vw + 16px);
    position: relative;
    float: left;
    text-align: left;
    padding-right: 16px;
    text-transform: uppercase;
}


.cart .total td{
    width: 33.33%;
    text-align: right;
    position: relative;
    float: left;
    font-family: "courier";
}

.cart .total td span{
    font-family: "ErtakaNeue Bold";
}




.wc-block-checkout{
	max-width: 1300px;
	margin: auto !important;
}


.wc-block-cart{
	width: 50% !important;
}

.wc-block-cart-items__header, .wc-block-cart-items__row .wc-block-components-product-metadata, .wc-block-cart-item__total, .wc-block-cart__totals-title{
	display: none !important;
}

.wc-block-cart__main .wc-block-cart-items, .wc-block-cart__main .wc-block-cart-items td, .wp-block-woocommerce-checkout-order-summary-block, .wp-block-woocommerce-checkout-order-summary-totals-block, .wc-block-components-totals-wrapper, .wc-block-cart .wp-block-woocommerce-cart-order-summary-block{
	border: 0 !important;
}

.wc-block-components-quantity-selector{
	border: 0 !important;
	margin: 20px 0 !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button, .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input{
	font-size: var(--font-title) !important;
	font-family: "ErtakaNeue Bold";
	color: var(--color-black)  !important;
}


.wc-block-components-form select, .wc-block-components-form input{
	font-size: var(--font-labeur) !important;
	border: 0 !important;
	border-radius: 0 !important;
	background-color: var(--color-white) !important;
	padding: 0 !important;
	height: fit-content !important;
}


 .wc-block-cart .wc-block-components-sidebar {
	 margin-left: 20vw;
	 width: calc(100% - 20vw)  !important;	 
}

..wc-block-components-sidebar-layout .wc-block-components-main{
	width: 75% !important;
}

.wc-block-components-sidebar{
	max-width: 300px;
	width: 25% !important;
}

body.page-template-page-cart form .wc-block-components-title.wc-block-components-title{
	font-size: var(--font-labeur) !important;
	line-height: 1.2;
	margin-top: 8px !important;
}

body.page-template-page-cart .wc-block-checkout__sidebar .wc-block-components-product-name{
	font-size: var(--font-labeur) !important;
}

body.page-template-page-cart .wc-block-components-checkout-step {
	display: flex;
	gap: 30px;
}

body.page-template-page-cart .wc-block-components-checkout-step__heading-container, .wc-block-components-checkout-step__content{
	flex: 1;
}

body.page-template-page-cart .wc-block-components-checkout-step__heading-container{
	margin-right: 200px;
	text-align: right;
	max-width: 250px;
}


.wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input{
	flex: auto !important;
	width: 100% !important;
}


.wc-block-components-order-summary .wc-block-components-order-summary-item__image{
	width: 75% !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img{
	max-width: none  !important;
	width: 100% !important;
	height: auto !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__total-price{
	display: none;
}

body.page-template-page-cart  .wc-block-components-sidebar-layout .wc-block-components-main{
	padding-right: 0;
	flex: 1;
}

body.page-template-page-cart  .wc-block-components-sidebar{
	padding-left: 0;
}


.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label, .wc-blocks-components-select .wc-blocks-components-select__label{
	left: auto !important;
	right: calc(100% + 20px) !important;
	font-size: var(--font-labeur) !important;
	top: 1px !important;
	transform: scale(1) !important;
	line-height: 22px !important;
}

.wc-blocks-components-select .wc-blocks-components-select__label{
	top: 5px !important;
}


body.page-template-page-cart .wc-block-components-form .wc-block-components-text-input, .wc-block-components-text-input, .wc-block-components-form select{
	margin-top: 4px !important;
}


body.page-template-page-cart .wc-blocks-components-select .wc-blocks-components-select__container{
	background-color: transparent;
}

.wc-block-components-address-form__address_2-toggle{
	font-size: var(--font-labeur) !important;
	line-height: 1 !important;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title{
	margin-top: 0 !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]{
	height: 12px !important;
}

.wc-block-components-textarea{
	border-radius: 0 !important;
}

.checkout .btn{
    font-size: var(--font-labeur);
    line-height: 15px;
}

.project-container{
    z-index: 999999;
}



.tooltipster-show{
    z-index: 999999;
}

.contenu-toolptip{
    opacity: 0;
    width: 300px;
    position: absolute;
    top: 10px;
    left: calc(33.33% + 11px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

.list-container .project-item:hover .contenu-toolptip{
    opacity: 1;
}


/* .category-films .grid-container .project-item {
  width: calc(50% - 0px);
}
 */






body.category-archives .not_archives,
body.search-results .not_archives{
  display: none;
}

body .site-nav .menu-item.in_archives{
  display: none;
}

body.category-archives .site-nav .in_archives,
body.search-results .site-nav .in_archives{
  display: block;
}

body.category-archives .site-nav .in_archives a,
body.search-results .site-nav .in_archives a{
  color: var(--color-black) !important;
}


body.category-archives .hidden-xs{
  display: none;
}

body.search-results .hidden-xs{
  top: 36px;
}

body.search-results .hidden-xs input{
  text-transform: uppercase;
}

.list-container{
  padding-top: 80px;
}

body.category-archives .projet-title-archives .form-search{
  position: absolute;
  right: 0;
  /* top: 12px; */
}

.list-container .project-item a .category{
  flex: 2;
}

body.category-archives .projet-title-archives input,
body.category-archives .projet-title-archives button,
body.category-archives .projet-title-archives img {
  display: inline-block;
  vertical-align: top;
  background: transparent;
}

body.category-archives .projet-title-archives .form-search input {
  display: none;
  padding: 0;
  margin: 0;
  line-height: inherit;
  border: none;
  text-align: right;
  max-width: 8em;
}

body.category-archives .projet-title-archives .form-search button {
  font-family: "ErtakaNeueDisplay Bold";
    text-transform: uppercase;
    font-size: var(--font-labeur);
}


body.category-archives .projet-title-archives .form-search.open input {
  display: inline-block;
    font-family: "ErtakaNeue Bold";
    font-size: var(--font-labeur);
}

body.category-archives .form-search.open button {
  display: none;
}

body.category-archives .project-item .contenu-toolptip{
  pointer-events: none;
}









/* -------------------------------------------------- */ 
/*      VIDEO     */
/* -------------------------------------------------- */


.category-films .site-header{
	  z-index: 10;
}


.window-grid-complete{
	transition: all var(--speed);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-black);
	z-index: 2;
	display: block;
	overflow-y: scroll;
}

.progression_timecode{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	z-index: 2;
}

.progression_timecode .current_time_progression{
	background-color: var(--color-white);
	height: 100%;
	width: 0;
}

.in_progress{
	animation: 10s linear infinite currently_progress;
}

@keyframes currently_progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


	
.category-films .grid-container .project-item{
	width: calc(50% - 0px);
	height: auto;
	overflow: auto;
	
}




.container_global_video{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	transition: all var(--speed);
	cursor: pointer;
}

.alternator_b{
	visibility: hidden;
	opacity: 0;
}

.container_global_video .container_video{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.container_global_video .container_video iframe{
	width: 100%;
	height: 100%;
	visibility: visible;
	transform-origin: 50% 50%;
	transform: scale(150%);
}

.container_global_video .container_img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
}

.container_global_video .container_img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
}
.container_global_video .container_img img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}


.container_global_video .container_titre{
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 3;
	font-size: var(--font-labeur);
	line-height: 1;
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	max-width: 50%;
}

.category-films .window-grid-complete .project-item{
	height: 100%;	
	position: relative;
	overflow: hidden;
}







.category-films .soundtracks-nav a span{
	background: var(--color-white);
	transition: all var(--speed); 
}

.category-films  .soundtracks-nav a:hover span{
	background: var(--color-black);
}


.window-grid-complete .grid-container{
	width: 100%;
	display: block;
	min-height: 100%;
}

.window-grid-complete .grid-container .grid-items{
	width: 100%;
	display: block;
	min-height: 100%;
	display: flex;
    flex-wrap: wrap;
}

.window-grid-complete .soundtracks-nav ul{
    display: flex;
    flex-direction: column;
    align-items: end;
}



.window-grid-complete .soundtracks-nav a{
	width: auto;
	justify-content: end;
	gap: 5px;
}

.window-grid-complete .soundtracks-nav .nav-name{
	font-size: var(--font-labeur);
	line-height: 1;
	font-family: "ErtakaNeueDisplay Bold";
	width: fit-content;
	text-transform: uppercase;
	color: 	color: var(--color-lightgrey);
	opacity: 0;
	visibility: hidden;
	transition: all var(--speed);
	margin-right: 20px;
}



.window-grid-complete .soundtracks-nav .active span {
  background: var(--color-black);
	
}

.window-grid-complete .soundtracks-nav a:hover span {
  background: var(--color-white);
}

.window-grid-complete .soundtracks-nav a:hover .nav-name {
	opacity: 1;
	visibility: visible;
	
}

.nav-open-grid{
	position: fixed;
	bottom: 10px;
	right: 10px;
	padding: 10px;
	z-index: 3;
	font-size: var(--font-labeur);
	line-height: 1;
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--speed);
}


.nav-open-grid:hover{
	color: var(--color-lightgrey);
}





.complete_video_reader{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	cursor: pointer;
	background-color: var(--color-black);
	opacity: 0;
	visibility: hidden;
	transition: all var(--speed);
	z-index: 4;
}

.reader_progression_timecode{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	z-index: 2;
}

.reader_current_time_progression{
	background-color: var(--color-white);
	height: 100%;
	width: 0;
}

.video_reader_exit{
	position: fixed;
	opacity: 0;
	visibility: hidden;
	transition: all var(--speed);
	top: 20px;
	right: 20px;
	z-index: 3;
	font-size: var(--font-labeur);
	line-height: 1;
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	z-index: 1000;
	width: 26px;
	top: 14px;
	cursor: pointer;
}

.video_reader_video{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.video_reader_video iframe{
	width: 100%;
	height: 100%;
	visibility: visible;
	transform-origin: 50% 50%;
	transform: scale(150%);
	pointer-events: none;

}

.video_reader_title{
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 3;
	font-size: var(--font-labeur);
	line-height: 1;
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	max-width: 33%;
}

.video_reader_control{ 
	display: none;
	position: absolute;
	bottom: 12px;
	right: 12px;
	z-index: 3;
	font-size: var(--font-labeur);
	line-height: 1;
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	display: flex;
	gap: 12px;
}


.video_reader_control li{
	padding: 8px;
}


.video_container_nav{
  position: fixed;
  right: 20px;
  top: 50%;
  padding-right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
	overflow: hidden;
	height: 167px;
	width: 300px;
	border-radius: 0 5px 5px 0;
}

.video_container_nav .soundtracks-nav {
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
	transition: all var(--speed);
}







/* -------------------------------------------------- */ 
/*      SPECIAL COLOR     */
/* -------------------------------------------------- */ 



body.page-store,
body.page-cart,
body.category-store,
body.category-soldout,
body.category-onsale,
body.category-design,
body.category-art,
body.category-soundtracks,
body.category-archives,
body.category-identities,
body.category-books,
body.search-results,
body.page-template-page-boutique,
body.page-template-page-cart {
  color: var(--color-black);
  background: var(--color-lightgrey);
}


/* Handle */
body.page-about::-webkit-scrollbar-thumb,
body.page-store::-webkit-scrollbar-thumb,
body.page-cart::-webkit-scrollbar-thumb,
body.category-store::-webkit-scrollbar-thumb,
body.category-soldout::-webkit-scrollbar-thumb,
body.category-onsale::-webkit-scrollbar-thumb,
body.category-design::-webkit-scrollbar-thumb,
body.category-art::-webkit-scrollbar-thumb,
body.category-soundtracks::-webkit-scrollbar-thumb,
body.category-archives::-webkit-scrollbar-thumb,
body.category-identities::-webkit-scrollbar-thumb,
body.category-books::-webkit-scrollbar-thumb,
body.search-results::-webkit-scrollbar-thumb,
body.page-template-page-boutique::-webkit-scrollbar-thumb,
body.page-template-page-cart::-webkit-scrollbar-thumb

{
    background-color: var(--color-black); 
    border-radius: 2px;
}



body.page-store .site-nav a,
body.page-cart .site-nav a,
body.category-store .site-nav a,
body.category-soldout .site-nav a,
body.category-onsale .site-nav a,
body.category-design .site-nav a,
body.category-art .site-nav a,
body.category-soundtracks .site-nav a,
body.category-archives .site-nav a,
body.category-identities .site-nav a,
body.category-books .site-nav a,
body.search-results .site-nav a,
body.page-template-page-boutique .site-nav a,
body.page-template-page-cart .site-nav a{
  color: var(--color-grey);
}



body.page-store .site-nav .current-menu-item a,
body.page-cart .site-nav .current-menu-item a,
body.category-store .site-nav .current-menu-item a,
body.category-soldout .site-nav .current-menu-item a,
body.category-onsale .site-nav .current-menu-item a,
body.category-design .site-nav .current-menu-item a,
body.category-art .site-nav .current-menu-item a,
body.category-soundtracks .site-nav .current-menu-item a,
body.category-archives .site-nav .current-menu-item a,
body.category-identities .site-nav .current-menu-item a,
body.category-books .site-nav .current-menu-item a,
body.search-results .site-nav .current-menu-item a,
body.page-template-page-boutique .site-nav .current-menu-item a,
body.page-template-page-cart .site-nav .current-menu-item a{
  color: var(--color-black) !important;
}




body.page-store .post-project:after,
body.page-cart .post-project:after,
body.category-store .post-project:after,
body.category-soldout .post-project:after,
body.category-onsale .post-project:after,
body.category-design .post-project:after,
body.category-art .post-project:after,
body.category-soundtracks .post-project:after,
body.category-archives .post-project:after,
body.category-identities .post-project:after,
body.category-books .post-project:after,
body.search-results .post-project:after,
body.page-template-page-boutique .post-project:after,
body.page-template-page-cart .post-project:after,
body.page-store .post-project .content,
body.page-cart .post-project .content,
body.category-store .post-project .content,
body.category-soldout .post-project .content,
body.category-onsale .post-project .content,
body.category-design .post-project .content,
body.category-art .post-project .content,
body.category-soundtracks .post-project .content,
body.category-archives .post-project .content,
body.category-identities .post-project .content,
body.category-books .post-project .content,
body.search-results .post-project .content,
body.page-template-page-boutique .post-project .content,
body.page-template-page-cart .post-project .content{
  background-color: var(--color-lightgrey) !important;
}



body.page-store .close svg,
body.page-cart .close svg,
body.category-store .close svg,
body.category-soldout .close svg,
body.category-onsale .close svg,
body.category-design .close svg,
body.category-art .close svg,
body.category-soundtracks .close svg,
body.category-archives .close svg,
body.category-identities .close svg,
body.category-books .close svg,
body.search-results .close svg,
body.page-template-page-boutique .close svg,
body.page-template-page-cart .close svg{
    fill: var(--color-black);
}


body.page-store .grid-container .project-item .title, 
body.page-store .site-nav .menu-item a,
body.page-cart .grid-container .project-item .title, 
body.page-cart .site-nav .menu-item a,
body.category-store .grid-container .project-item .title, 
body.category-store .site-nav .menu-item a,
body.category-soldout .grid-container .project-item .title, 
body.category-soldout .site-nav .menu-item a,
body.category-onsale .grid-container .project-item .title, 
body.category-onsale .site-nav .menu-item a,
body.category-design .grid-container .project-item .title, 
body.category-design .site-nav .menu-item a,
body.category-art .grid-container .project-item .title, 
body.category-art .site-nav .menu-item a,
body.category-soundtracks .grid-container .project-item .title, 
body.category-soundtracks .site-nav .menu-item a,
body.category-archives .grid-container .project-item .title, 
body.category-archives .site-nav .menu-item a,
body.category-identities .grid-container .project-item .title, 
body.category-identities .site-nav .menu-item a,
body.category-books .grid-container .project-item .title, 
body.category-books .site-nav .menu-item a,
body.search-results .grid-container .project-item .title, 
body.search-results .site-nav .menu-item a,
body.page-template-page-boutique .grid-container .project-item .title, 
body.page-template-page-boutique .site-nav .menu-item a,
body.page-template-page-cart .grid-container .project-item .title, 
body.page-template-page-cart .site-nav .menu-item a
{
  color: var(--color-grey) ;
}



body.page-store .grid-container .project-item:hover .title, 
body.page-store .site-nav .menu-item a:hover,
body.page-cart .grid-container .project-item:hover .title, 
body.page-cart .site-nav .menu-item a:hover,
body.category-store .grid-container .project-item:hover .title, 
body.category-store .site-nav .menu-item a:hover,
body.category-soldout .grid-container .project-item:hover .title, 
body.category-soldout .site-nav .menu-item a:hover,
body.category-onsale .grid-container .project-item:hover .title, 
body.category-onsale .site-nav .menu-item a:hover,
body.category-design .grid-container .project-item:hover .title, 
body.category-design .site-nav .menu-item a:hover,
body.category-art .grid-container .project-item:hover .title, 
body.category-art .site-nav .menu-item a:hover,
body.category-soundtracks .grid-container .project-item:hover .title, 
body.category-soundtracks .site-nav .menu-item a:hover,
body.category-archives .grid-container .project-item:hover .title, 
body.category-archives .site-nav .menu-item a:hover,
body.category-identities .grid-container .project-item:hover .title, 
body.category-identities .site-nav .menu-item a:hover,
body.category-books .grid-container .project-item:hover .title, 
body.category-books .site-nav .menu-item a:hover,
body.search-results .grid-container .project-item:hover .title, 
body.search-results .site-nav .menu-item a:hover,
body.page-template-page-boutique .grid-container .project-item:hover .title, 
body.page-template-page-boutique .site-nav .menu-item a:hover,
body.page-template-page-cart .grid-container .project-item:hover .title, 
body.page-template-page-cart .site-nav .menu-item a:hover{
  color: var(--color-black) !important;
}





/* -------------------------------------------------- */ 
/*      CART     */
/* -------------------------------------------------- */ 

body.page-template-page-cart .post-page .content, body.page-template-page-cart .post-page .aside{
	width: 100%;
}

body.page-template-page-cart .post-page.post-cart{
	padding-top: 100px;
}

.wc-block-cart{
	flex-direction: column;
	    margin: auto;
    position: relative;
    width: fit-content;
	max-width: 800px;

}

body.page-template-page-cart .wc-block-components-product-name, 
body.page-template-page-cart table.wc-block-cart-items .wc-block-cart-items__header,
body.page-template-page-cart .wc-block-cart .wc-block-cart__totals-title,
body.page-template-page-cart , body.page-template-page-cart .wc-block-components-title.wc-block-components-title, table.wc-block-cart-items .wc-block-components-formatted-money-amount
{
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	font-size: var(--font-title) !important;
}

.wc-block-cart-item__remove-link{
	text-transform: uppercase !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description{
	line-height: 1.2;
}

body.page-template-page-cart .wc-block-components-button:not(.is-link) .wc-block-components-button__text
{
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	font-size: var(--font-labeur) !important;
	background-color: var(--color-black);
	width: fit-content;
	margin: 0 auto 0 0;
	color: var(--color-white);
	padding: 16px 22px;
	transition: all var(--speed);
}

body.page-template-page-cart .wc-block-components-button:not(.is-link) .wc-block-components-button__text:hover{
	background-color: var(--color-grey);
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description p{
	padding: 12px 0;
	font-family: "courier";
	text-transform: none;
	font-size: var(--font-labeur) !important;
}


body.page-template-page-cart .wc-block-components-totals-wrapper span, .wc-block-components-totals-footer-item .wc-block-components-totals-item__label, .wc-block-components-totals-footer-item .wc-block-components-totals-item__value{
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	font-size: var(--font-medium) !important;
}

.wc-block-cart.wc-block-components-sidebar-layout .wc-block-components-main, .wc-block-cart .wc-block-components-sidebar{
	width: 100%;
	padding: 0 0 20px 0;
}

body.page-template-page-cart .wc-block-cart__main .wc-block-cart-items td{
	padding-left: 0 !important;
}


body.page-template-page-cart .wc-block-cart__main .wc-block-cart-items td:last-child, body.page-template-page-cart .wc-block-cart__main .wc-block-cart-items th{
	padding-right: 0 !important;
}

body.page-template-page-cart .wc-block-cart-item__image img{
	padding-right: 16px;
}
body.page-template-page-cart .wc-block-cart-item__image{
	width: 20vw;
}



.wc-block-components-checkout-order-summary__title-text, body.page-template-page-cart  .wp-block-woocommerce-checkout-order-summary-subtotal-block span, .wc-block-components-sidebar .wc-block-components-totals-wrapper span, body.page-template-page-cart .wc-block-components-sidebar .wc-block-components-totals-footer-item span, body.page-template-page-cart .wc-block-components-sidebar .wc-block-components-totals-wrapper span
{
	font-family: "ErtakaNeueDisplay Bold";
	text-transform: uppercase;
	font-size: var(--font-labeur) !important;
}
.wc-block-components-checkout-order-summary__content .wc-block-components-product-metadata{
	display: none;
}


.mobile_about{
	display: none;
}

.desk_about{
	display: block;
}





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


@media screen and (max-width: 1434px) {

	.is-medium table.wc-block-cart-items .wc-block-cart-items__row, 
	.is-mobile table.wc-block-cart-items .wc-block-cart-items__row, 
	.is-small table.wc-block-cart-items .wc-block-cart-items__row
	{
		display: flex !important;
	}

}


@media screen and (max-width: 1360px) {
  :root {
    --global-margin-top: 42px;
    --font-labeur: 12px;
    --font-medium:16px;
    --font-title: 21px;
  }

  .site-nav .menu_separator{
    display: none;
  }
	
	.video_reader_exit{
		width: 21px;
    	top: 16px;
	}
	
}


@media screen and (max-width: 1150px) {
  .site-title{
    width: 23%;
  }
  .site-nav{
    width: 77%;
  }
  

  .page-about .post-page .col-1 *
  {
    font-size: var(--font-labeur);
    line-height: 1.3;
  }
}


.mobile_menu_home{
	display: none !important;
}


@media screen and (max-width: 1000px) {

  :root {
    --global-margin-top: 42px;
    --font-labeur: 12px;
    --font-medium:17px;
    --font-title: 28px;
  }
	
	.mobile_menu_home{
		display: block  !important;
	}

	
	.home-intro .first_appear{
		opacity: 0;
	}
	
	.home-intro .third_appear{
		opacity: 1;
	}

  .pointerevents .grid-container .project-item .title{
    color: var(--color-white);
    width: calc(100% - 10px);
  }

  .visible-xs-block {
    display: block;
	height: 0;
  }

  .visible-xs-block .simpleCart_quantity{
    display: none;
  }


  body.page-store .icon-menu img,
  body.page-cart .icon-menu img,
  body.category-store .icon-menu img,
  body.category-soldout .icon-menu img,
  body.category-onsale .icon-menu img,
  body.category-design .icon-menu img,
  body.category-art .icon-menu img,
  body.category-soundtracks .icon-menu img,
  body.category-archives .icon-menu img,
  body.category-identities .icon-menu img,
  body.category-books .icon-menu img,
  body.search-results .icon-menu img,
  body.page-template-page-boutique .icon-menu img,
  body.page-template-page-cart .icon-menu img{
    filter: invert(100%);
  }
	
	
body.page-store .site-nav .menu-item a,  
body.page-cart .site-nav .menu-item a, 
body.category-store .site-nav .menu-item a, 
body.category-soldout .site-nav .menu-item a, 
body.category-onsale .site-nav .menu-item a, 
body.category-design .site-nav .menu-item a, 
body.category-art .site-nav .menu-item a, 
body.category-soundtracks .site-nav .menu-item a, 
body.category-archives .site-nav .menu-item a, 
body.category-identities .site-nav .menu-item a, 
body.category-books .site-nav .menu-item a, 
body.search-results .site-nav .menu-item a, 
body.page-template-page-boutique .site-nav .menu-item a, 
body.page-template-page-cart .site-nav .menu-item a
	{
      color: var(--color-darkgrey);
  	}
   

  body .site-nav .menu .current-menu-item a{
      color: var(--color-white) !important;
  }

  body .site-nav .menu .current-menu-item .sub-menu a{
      color: var(--color-darkgrey) !important;
  }

	

  .visible-xs-inline-block {
    display: inline-block;
  }

  .hidden-xs {
    display: none !important;
  }

  .site-header {
    height: 0;
      display: block !important;
      opacity: 1 !important;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 14px;
    background: var(--color-black);
    color: #fff;
    overflow: auto;
    margin-left: 0;
    -webkit-overflow-scrolling: touch;
      width: calc(100% - 0px);
      z-index: 999;
  }


  .site-nav .menu_separator{
    display: none !important;
  }
    
    .icon-menu img{
        width: 30px;
        margin-right: 20px;
        position: absolute;
        right: 0;
        top: 14px;

    }

  .site-nav .menu-principal-container {
    padding-bottom: 100px;
  }

  .site-nav .social-links {
    /* display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    background: var(--color-black); */
  }

  .site-nav .menu-close {
    position: fixed;
    display: block;
  }
    
    .site-nav .menu-close img{
        width: 30px;
        margin-right: 20px;
        position: fixed;
        right: 0;
        top: 14px;
    }

  .site-nav .menu {
    display: block;
      column-count: 1;
  }

    .site-nav .menu-item{
        display: block;
        font-size: 54px;
        line-height: 40px;
    }
    
    .site-nav .menu .sub-menu{
        /* position: relative;
        float: left;
        left: auto;
        display: block;
        z-index: 1000;
        clear: left; */
    }
    
    .site-nav .menu .menu-item-4741 .sub-menu, .site-nav .menu .menu-item-4744 .sub-menu{
        display: none;
    }

  .site-nav .menu > .menu-item {
    margin-left: 0;
      float: left;
      clear: left;
      overflow: hidden;
  }
    
    .site-nav .menu-item a{
        float: left;
    }

    .site-nav .current-menu-item:before, .site-nav .current-menu-ancestor:before {
        position: relative;
        float: left;
    }

  .no-results {
    padding: var(--global-margin-top) 20px;
  }

  .grid-container,
  .list-container {
    /* padding: var(--global-margin-top) 0; */
  }

  .project-item {
    padding: 0;
  }


  .post {
    
  }

  .category-soundtracks main{
    margin-top: var(--global-margin-top);
  }


  .post-audio .content{
    width: 100%;
    margin-left: 0;
  }
    
    .post-audio .content h1{
        margin: 10px 0 10px 0;
    }

    .post-audio .content .deux-col{
      display: flex;
      gap: 14px;
    }


    .post-audio .content .deux-col .col-1{
        width: 100%;
        margin: 0 0 30px 0;
        flex: 3;
    }
    
    .post-audio .content .deux-col .links {
        flex: 1;
    }
    
    .post-audio .content .links p{
        margin-left: 0px;
    }

    .slick-initialized .slick-slide{
      max-height: 75vh;
    }
    
  .post .close {
    top: 16px;
    right: 16px;
      text-align: right;
      position: fixed;
  }
    
    .post .close svg{
        height: 35px;
    }

  .post .close img {
    width: 22px;
    height: auto;
  }

  .post-project{
    padding: 0px;
  }

  .post-audio {
    display: block;
    height: auto;
    --audio-content-height: auto;
  }

  .post-audio .wrapper {
    display: block;
    height: auto;
	margin-top: 20px;
  }
	
	.post-audio .content{
	  padding-top: 20px;	
	}

  .post-audio .slides {
    width: 100%;
    /* margin-bottom: 20px; */
  }

  .post-audio .slides img {
    margin: auto;
    max-height: 60vh;
    width: auto;
	object-fit: contain;
  }
  
  .post-project .slides img{
      width: calc(100vw - 32px) !important;
      height: auto !important;
  }

  .post-project .slick-slide{
    height: auto !important; 
  }

  .post-audio .links {
    position: static;
    height: auto;
    text-align: left;
    padding: 0;
    margin-top: 1em;
  }

  .post-store {
    display: block;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
    
    .post-project .slides .slide-item{
        /*padding-right: 0px;*/
    }
    
  .post-store .aside {
    position: static;
    height: auto;
    width: calc(100vw - 60px) !important;
    margin-bottom: 20px;
  }

  .post-store .slides .slide-item {
    padding: 0;
  }

  .post-store .content {
    padding: 30px;
    position: static;
  }
    
    .post-project.post-store .slides div{
        height: auto;
        width: calc(100vw - 75px);
    }


  .project-item img, .grid-items {
      width: calc(100% - 10px);
    max-width: 100% !important;
      margin-right: 0px !important;
    }

  .grid-container .project-item {
    width: 100% !important;
  }

  .post-newstore .btn{
    color: var(--color-white);
    background-color: var(--color-black);
    padding: 4px 8px;
  }

  .item_price{
    margin-bottom: 5px
  }

  .cart {
    display: block;
    margin: auto;
    max-width: 800px;
    width: 100%;
    /* padding: var(--global-margin-top) 0 0; */
  }

  .cart .item-name .quantity-wrapper{
    padding: 40px 0 50px; 
  }

  .simpleCart_items tr{
    padding-left: 33vw;
  }

  .cart .itemRow td, .cart .itemRow td.item-total{
    padding-left: 0;
  }

  .cart .simpleCart_items .itemRow td.item-thumb{
    width: calc(33vw);
  }

  .cart .total th, .cart .checkout{
    margin-left: calc(33vw);
  }

    .category-store .site-header .cart-toggle {
        display: inline-block;
        position: absolute;
        right: 90px;
    }
    
  .post-page {
    display: block;
  }

  .post-page .content,
  .post-page .aside {
    padding-left: 0;
    padding-right: 0;
      column-count: 1;
      width: calc(100% - 30px);
  }

  .post-page p,
  .post-page ul,
  .post-page ol,
  .post-page form {
    margin-left: 0;
  }

  .post-page .aside {
    position: static;
    font-size: 100%;
    line-height: inherit;
    max-width: none;
  }

  .soundtracks-nav {
    padding-right: 0;
    display: none;
  }
    
    .post-project .content h1{
        font-size: 48px;
    line-height: 36px;
        margin-top: 0px;
        word-break: break-word;
        padding-right: 90px;
        width: calc(100% - 90px);
    }
    
    
    .page-about .content .col-1{
        width: calc(100% - 30px);
    }

    .page-about .content .col-1.col_title{
        width: calc(48% - 10px);
    }
    .page-about .content .col-1.col_ul{
        width: calc(48% - 10px);
		margin-right: 10px;
    }

    .category-store .post-audio .slides{
      margin-bottom: 50px;
    }
    .category-store .post-audio .content .deux-col{
      display: block;
    }

    .flex-price{
      flex-direction: column-reverse;
      align-items: end;
    }


    .slick-track{
      display: flex;
      flex-direction: column;
      height: auto;
      width: 100%;
      overflow: scroll;

    }

    .post-project{
      overflow-y: scroll;
      height: auto;
    }

    .post-project .nav{
      display: none;
    }

    .slick-initialized .slick-slide{
      max-height: none;
    }

 
    
    .post-project .slides, .post-project .content{
      position: relative;
      width: 100%;
    }
	
	.post-project .content{
      overflow: hidden;
    }

    .post-store .content, .post-project .content{
      display: block;
      position: relative;
      padding-bottom: 30px;
      font-size: var(--font-labeur);
    }

    .post-project .content p{
      font-size: var(--font-labeur);
    }
    .post-project .content h1{
      font-size: var(--font-medium);
    }

    body.category-store .slick-initialized .slick-slide{
      /* display: none; */
    }

    body.category-store .post-audio .slides, .post-audio{
      margin-right: 4px;
    }

    body.category-store .slick-track{
      display: block;
    }
	.grid-container .project-item-video a{
		width: calc(100% - 10px);
	}

	.post-audio .content .links{
		position: relative;
		text-align: right;
	}


	.nav-newstore{
		display: none;
	}

	.page-template-page-boutique .post-audio .content .deux-col{
		display: block;
	}

	.post-newstore .slides{
		margin-bottom: 30px;
	}
	
	.ajax_add_to_cart, .added_to_cart {
		background-color: var(--color-black);
		color: var(--color-white);
		margin-top: 10px;
		padding: 2px 6px;
	}
	
	.post-audio .content .deux-col .col-1.flex-price{
        width: fit-content;
        margin-left: auto;
		align-items: start;
	}
	
	.post-audio .content .flex-price p, .flex-price a{
		margin-bottom: 15px;
		font-size: var(--font-medium);
	}
	
	.wc-block-cart{
		max-width: none;
	}

	
	body .wc-block-components-sidebar-layout .wc-block-components-main{
		width: 100%;
		padding-right: 0;
	}
	
	.wc-block-checkout__sidebar{
		display: none;
	}
	
	.posts-container .slick-track{
		flex-direction: row;
	}
	
	.post-newstore .slick-list{
		max-height: none;
	}


    body.page-store .grid-container .project-item .title, 
    body.page-cart .grid-container .project-item .title, 
    body.category-store .grid-container .project-item .title, 
    body.category-soldout .grid-container .project-item .title, 
    body.category-onsale .grid-container .project-item .title, 
    body.category-design .grid-container .project-item .title, 
    body.category-art .grid-container .project-item .title, 
    body.category-soundtracks .grid-container .project-item .title, 
    body.category-archives .grid-container .project-item .title, 
	body.category-identities .grid-container .project-item .title, 
    body.category-books .grid-container .project-item .title, 
    body.search-results .grid-container .project-item .title,
	body.page-template-page-boutique .grid-container .project-item .title,
	body.page-template-page-cart .grid-container .project-item .title
    {
      color: var(--color-black) ;
    }

    body.page-store .site-nav .menu-item a:hover,
    body.page-cart .site-nav .menu-item a:hover,
    body.category-store .site-nav .menu-item a:hover,
    body.category-soldout .site-nav .menu-item a:hover,
    body.category-onsale .site-nav .menu-item a:hover, 
    body.category-design .site-nav .menu-item a:hover,
    body.category-art .site-nav .menu-item a:hover,
    body.category-soundtracks .site-nav .menu-item a:hover,
    body.category-archives .site-nav .menu-item a:hover,
	body.category-identities .site-nav .menu-item a:hover,
    body.category-books .site-nav .menu-item a:hover,
    body.search-results .site-nav .menu-item a:hover,
	body.page-template-page-boutique .site-nav .menu-item a:hover,
	body.page-template-page-cart .site-nav .menu-item a:hover{
      color: var(--color-white) !important;
    }

	.mobile_about{
		display: block;
	}
	
	.desk_about{
		display: none;
	}
	
	.category-films .project-item iframe, .category-films .container_video iframe, .category-films .video_reader_video iframe{
		transform: scale(200%);
	}
	
	.category-films .project-item img{
		width: 100%;
	}
    
	.wc-block-checkout__billing-fields .wc-block-components-address-form .wc-block-components-text-input{
		width: 100% !important;
	}
	
	.wc-block-cart{
		width: 100% !important;
	}
	
	body.page-template-page-cart .wc-block-cart-item__image{
		width: 40vw;
	}
	
	.wc-block-cart .wc-block-components-sidebar{
		margin-left: 40vw;
		width: calc(100% - 40vw) !important;
	}
	
	
	.site-nav .menu .sub-menu{
		position: relative;
   	 	left: auto;
    	right: auto;
    	display: block;
    	z-index: auto;
	}
	.site-nav .menu-item a{
		line-height: 0.75;
		overflow: hidden;
	}
	
	.site-nav .menu .current-menu-item .sub-menu, .site-nav .menu .current-menu-ancestor .sub-menu{
		display: block;
	}
	
		
	.video_reader_exit{
		width: 26px;
    	top: 15px;
	}
	
}






/* -------------------------------------------------- */ 







@media screen and (max-width: 720px) {
    
    .slick-track{
        /* height: calc(100vh - 60px) !important; */
    }
    
    .post-project .slides .slide-item .wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 56.25%;
    }

    .post-project .slides iframe{
        position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
    }
    
    .post-audio .slides{
        width: 100%;
    }
    .post-audio .slides img{
        width: 100%;
    }
    .post-audio .wrapper{
        height: auto;
    }
    .post-audio .content{
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 80px;
    }
    .soundtracks-nav{
        display: none;
    }
    .category-soundtracks .post-audio{
        margin-right: 0px;
    }
    .slick-slider .slick-track,{
        margin: 0px;
        padding: 0px;
    }
    .cart .item-name .quantity-wrapper{
        float: left;
        clear: left;
        margin-top: 20px;
    }
    .cart .itemRow td.item-name, .cart .itemRow td.item-total {
        position: relative;
        float: left;
        width: 100%;
        clear: left;
        text-align: left;
        padding: 0px;
        margin-bottom: 20px;
        margin-left: 30px;
    }
    .cart .item-thumb img{
        display: block;
        height: auto;
        width: 100%;
        object-fit: unset;
        position: relative;
        float: left;
    }
    .page-cart .post-page.post-cart .content{
        width: calc(100% - 0px);
        margin-right: 0px;
    }
    .post-page.post-cart {
        /* padding-top: 100px; */
    }
    .post-store .content .deux-col .col-1, .post-store .content .deux-col .col-1.buy{
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
    }
    .cart .itemRow td.item-name, .cart .itemRow td.item-thumb{
        padding-top: 30px;
    }
    tr.itemRow, .cart .itemRow td.item-thumb{
        padding-bottom: 30px;
    }
    
    .post-project .slick-slide {
        height: auto !important;
    }
    
    .post-project .slides img, .post-project .slides .slide-item.vid{
        width: calc(100vw - 32px) !important;
    }

    .post-project .slides img{
      margin-right: 0;
    }

  .home-intro .second_appear p{
    font-size: 26px;
    line-height: 24px;
  }
	
	.category-films .project-item iframe, .category-films .container_video iframe, .category-films .video_reader_video iframe{
		transform: scale(300%);
	}
	
	
	body.page-template-page-cart .wc-block-components-checkout-step{
		flex-direction: column;
	}
	
	body.page-template-page-cart form .wc-block-components-title.wc-block-components-title{
		text-align: left;
	}
	
	
	body.page-template-page-cart .wc-block-components-checkout-step__content {
		margin-left: 50%;
	}
	
	.wp-block-woocommerce-checkout-order-summary-block{
		display: none;
	}
	
	.control_video_pause, .control_video_fullscreen{
		display: none;
	}
	
}




/* -------------------------------------------------- */ 



@media screen and (max-width: 500px) {
    
    :root{

      --global-margin-top: 46px;
    }

    .site-header{
        padding: 15px 0px;
    }
    
    .site-title{
        margin-left: 0px;
    }
    
    .icon-menu img{
        top: 15px;
    }
    
    
    .site-nav .menu-close{
        top: 11px;
        right: 15px;
    }
    
    .site-nav{
        padding: 15px;
    }
    
    .site-title, .site-nav .menu-item {
        font-size: 32px;
        line-height: 24px;
    }
    
    
    .post-project .slides, .post-project .content{
        top: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
    }
    
    .post-project .slides img, .post-project .slides .slide-item.vid{
        width: calc(100vw - 32px) !important;
        margin-right: 15px;
    }
    
    .post-project .slides .slide-item.vid{
        width: calc(100vw - 0px) !important;
    }
    
    .post-project .content h1{
        margin-top: 0px;
        padding-right: 0px;
    }
    .post .close {
        top: 15px;
        right: 15px;
    }
    .grid-container, .list-container, .page-about .post-page, .post-page.post-cart, .post-audio{
        padding-top: var(--global-margin-top);
    }
    .home-intro img {
        height: calc(100% - 26px);
        width: calc(100% - 26px);
        margin-left: 13px;
        margin-top: 13px;
    }
    .post-page .content, .post-page .aside{
        width: calc(100% - 0px);
        margin-left: 0px;
    }
    .post-store .content, .post-project .content{
        padding: 0px;
        margin: 0px;
        overflow-x: hidden;
    }
    .post-store .content{
        position: relative;
        float: left;
        overflow-x: hidden;
    }

    
    .post-store .aside {
        width: calc(100vw - 0px) !important;
        position: relative;
        float: left;
        margin-left: 0px;
        margin-top: 0px;
    }
    
    .post-project .slides{
        position: relative;
        float: left;
        width: calc(100% - 30px);
        margin: 0px;
        padding: 0px;
    }
    
    .post iframe {
        max-width: calc(100% - 30px);
    }
    
    .post-project.post-store .slides div {
        width: calc(100vw - 0px);
    }
    
    .post-project.post-store .content h1{
        margin-top: 30px;
        padding-right: 0px;
    }
    
    .post-page.post-cart, .category-soundtracks .post-audio{
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .cart{
        padding-top: 0px;
    }
    
    .post-store{
        overflow-x: hidden;
    }
    
    .btn{
        margin-bottom: 50px;
    }
    
    .cart .total th {
        width: 33.33%;
        margin-left: 0px;
    }
    
    .simpleCart_total, .simpleCart_tax, .simpleCart_grandTotal{
        margin-left: 20px;
    }
    .cart .total td, .cart .total th, .cart .checkout{
        text-align: left;
    }
    
    .page-about .content .col-1{
        width: calc(100% - 0px);
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    
    .slick-next.slick-arrow, .slick-prev.slick-arrow {
        display: none !important;
    }



    .cart .simpleCart_items .itemRow td.item-thumb{
      width: 100%;
      position: relative;
    }

    .simpleCart_items tr{
      width: 100%;
      padding: 0;
    }

    .cart .itemRow td.item-name, .cart .itemRow td.item-thumb, .cart .itemRow td.item-name, .cart .itemRow td.item-total{
      margin-left: 0;
    }
	
	
/* 	.post-audio .content .deux-col .col-1.flex-price{
		margin-left: 0;
	} */
	
	.post-audio .content .deux-col .col-1{
		margin-bottom: 0;
	}
	
		
	.category-films .project-item iframe, .category-films .container_video iframe, .category-films .video_reader_video iframe{
		transform: scale(400%);
	}
	
	.page-about .content .col-1.col_ul{
		margin-right: 10px !important;
	}
	
	.video_reader_exit{
		width: 32px;
    	top: 15px;
	}
	
}




@media screen and (max-width: 450px) {
  .home-intro .second_appear p{
    font-size: 20px;
    line-height: 18px;
  }
	
	body.page-template-page-cart .wc-block-cart-item__image{
		width: 0vw;
		padding-right: 0 !important;
	}
	
	.wc-block-cart .wc-block-components-sidebar{
		margin-left: 0vw;
		width: calc(100% - 0px) !important;
	}
	
}



/* -------------------------------------------------- */ 



@media screen and (max-width: 340px) {

    .site-title, .site-nav .menu-item {
        font-size: 28px;
        line-height: 22px;
    }
    
    .icon-menu img, .site-nav .menu-close img {
        width: 26px;
    }
    
    .site-nav .menu-close {
        top: 8px;
    }
    
}


.post-page h1, .post-page h2, .post-page h3[
  font-family: "ErtakaNeueDisplay Bold";
]