#loading {
  background-color: #fff;
  background-image: url(../img/loader.gif);
  background-position: 50% 50%;
  background-size: 40%;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
}

@media screen and (min-width: 320px) {
  html {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}

@media screen and (min-width: 1000px) {
  html {
    font-size: 22px;
  }
}

body {
  color: black;
  font-family: bilo, sans-serif;
  font-weight: 300;
  font-style: normal;
  cursor: url(../img/hand.svg), auto;
  overflow-y: scroll;
}

body a:hover,
body input:hover,
body button:hover,
body .pointer {
  cursor: url(../img/pointer.svg), auto;
}

body a.custom-logo-link:hover {
  cursor: url(../img/victory.svg), auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-family: bilo, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.txt-jp {
  font-family: "M PLUS 1p", sans-serif;
}

body.overflow {
  overflow: hidden;
}

a {
  color: black;
  transition: 0.3s ease;
}

a:visited {
  color: black;
}

a:hover {
  color: black;
  opacity: 0.5;
}

.site-header {
  padding: 3% 6%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8;
  background-color: #fff;
  transition: 0.2s ease;
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.7s ease;
}

.body-menu-active .site-header {
  /* bottom: 0; */
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.site-header.hide-header {
  transform: translateY(-100%);
}

/* .woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
    background: #eee;
    padding: 20px;
} */

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link,
.added_to_cart {
  color: #fff !important;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  /* outline: 2px solid #eee; */
  outline: none;
}

[data-whatintent="mouse"] *:focus {
  outline: none;
}

.site-branding {
  /* border: 1px solid; */
  position: relative;
}

.burger,
.lien-insta,
.swiper-pagination {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  position: absolute;
  top: 10px;
  right: 0;
  left: auto;
  white-space: nowrap;
}
.burger {
  right: -10px;
}

@media screen and (min-width: 480px) {
  .burger {
    right: -12px;
  }
}

@media screen and (min-width: 1000px) {
  .burger {
    right: -16px;
  }
}
/* .lien-insta img {
  width: 35px;
} */

.lien-insta {
  right: 45px;
  top: 22px;
  width: auto;
  height: auto;
}
@media screen and (min-width: 380px) {
  .lien-insta {
    right: 50px;
  }
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25em;
}

.burger__line {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -1.5px;
}

.burger__line,
.burger__line::before,
.burger__line::after {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 4px;
  background-color: #000;
  outline: 1px solid transparent;
  -webkit-transition-property: width, background-color, -webkit-transform;
  transition-property: width, background-color, -webkit-transform;
  transition-property: width, background-color, transform;
  transition-property: width, background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.burger__line::after {
  width: 20px;
}

.burger__line::before,
.burger__line::after {
  position: absolute;
  content: "";
}

.burger__line::before {
  top: -8px;
}

.burger__line::after {
  top: 8px;
}

.burger__line--active {
  background-color: transparent;
  width: 0;
}

.burger__line--active::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.burger__line--active::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.burger__line--active:before,
.burger__line--active:after {
  background-color: #000;
  width: 30px;
}

/* .burger:hover {
    cursor: pointer;
} */

.menu__item--main {
  margin-bottom: 20px;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  /* -webkit-transition: all .3s ease;
    transition: all .3s ease; */
  font-size: 1.1em;
}

.menu__item--main .txt-jp {
  font-size: 0.95em;
}

.main-navigation .menu__link--main {
  padding: 10px 0;
  display: inline-block;
  min-width: 100%;
}

@media (min-width: 768px) {
  .main-navigation .menu__link--main {
    min-width: 560px;
  }
}

@media (min-width: 1280px) {
  .main-navigation .menu__link--main {
    min-width: 590px;
  }
}

@media (min-width: 1440px) {
  .main-navigation .menu__link--main {
    min-width: 700px;
  }
}

.main-navigation ul {
  display: flex !important;
  flex-direction: column;
  text-align: center;
  height: 100%;
  justify-content: space-around;
  max-height: 390px;
}

.nav {
  background-color: #fff;
  position: fixed;
  z-index: 8;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  padding: 100px 20px 60px 20px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0;
  transition: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin-left: calc(100vw - 100%); */
}

.nav--visible {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: -webkit-transform 0.55s
    cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.nav--visible .menu__item--main {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.2, 1),
    opacity 0.55s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.2, 1),
    opacity 0.55s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0, 0, 0.2, 1),
    opacity 0.55s cubic-bezier(0, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.nav--visible .menu__item--main span {
  display: inline-block;
  width: 15%;
}

.nav--visible .menu__item--main span:first-child,
.nav--visible .menu__item--main span:last-child {
  width: 40%;
}

.nav--visible .menu__item--main span:first-child {
  text-align: right;
  text-transform: lowercase;
}

.nav--visible .menu__item--main span:last-child {
  text-align: left;
}

.sep-menu svg {
  vertical-align: middle;
  width: 5px;
  height: 5px;
}

@media (min-width: 480px) {
  .sep-menu svg {
    width: 6px;
    height: 6px;
  }
}

@media (min-width: 768px) {
  .sep-menu svg {
    width: 7px;
    height: 7px;
  }
}

@media (min-width: 1024px) {
  .sep-menu svg {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 1280px) {
  .sep-menu svg {
    width: 9px;
    height: 9px;
  }
}

@media (min-width: 1440px) {
  .sep-menu svg {
    width: 10px;
    height: 10px;
  }
}
span.sep-menu {
  max-width: 1.5em;
}
.nav--visible .menu__item--main:nth-child(1) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.nav--visible .menu__item--main:nth-child(2) {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

.nav--visible .menu__item--main:nth-child(3) {
  -webkit-transition-delay: 1.05s;
  transition-delay: 1.05s;
}

.nav--visible .menu__item--main:nth-child(4) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.nav--visible .nav__menu--sub,
.nav--visible .nav__about,
.nav--visible .nav__social {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.85s;
  transition-delay: 0.85s;
}

@media (min-width: 667px) {
  .nav {
    padding: 120px 90px 70px 90px;
  }
}

.menu {
  list-style-type: none;
}

.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out 0.2s;
  transition: all 0.3s ease-in-out 0.2s;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
}

.site-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.custom-logo-link {
  position: relative;
  z-index: 9;
}

.custom-logo-link img {
  width: 200px;
  height: auto;
  padding: 18px 0;
}

@media (min-width: 480px) {
  .custom-logo-link img {
    width: 274px;
    height: auto;
    padding: 13px 0;
  }
}

/* fade image in while loading and show a spinner as background image (good for progressive images) */

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
  transition: opacity 300ms;
  background: #f7f7f7 url(../img/loader.svg) no-repeat center;
}

main,
.laurence-wrapper {
  padding: 0% 6%;
  overflow: auto;
  position: relative;
}

.home-proj {
  position: relative;
  overflow: hidden;
  display: block;
  transition: 0.3s ease 2s;
}
.opa {
  opacity: 0;
}

.home-proj img {
  width: 100%;
  max-width: none;
}

.home-proj h2 {
  font-size: 1em;
}

.home-proj:hover {
  opacity: 1;
}

/* @media (min-width: 768px) { */
.home-proj h2 {
  margin: 0;
  font-size: 1.25em;
}
.home-proj h2 .animated-h2,
.home-proj::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 101%;
  will-change: transform;
  transition: transform 0.5s ease, opacity 0.35s ease;
  /* transform: translateY(100%); */
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 1;
  opacity: 0;
  /* opacity: .9; */
}
.home-proj h2 .animated-h2 {
  transition-delay: 0s;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background-color: transparent;
  transform: translateY(20px);
  transition: transform 0.35s ease, opacity 0s ease;
  margin: 0;
  padding: 0 10%;
  text-align: center;
}
.home-proj:hover h2 .animated-h2,
.home-proj:hover::after {
  transform: translateY(0%);
  opacity: 1;
}
.home-proj:hover h2 .animated-h2 {
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.5s ease;
  transition-delay: 0.35s;
}
/* } */
@media (min-width: 768px) {
  .home-proj h2 {
    font-size: 1.25em;
  }
}

@media (min-width: 1280px) {
  .home-proj h2 {
    font-size: 1.5em;
  }
}

.single-projet .swiper-button-next,
.single-projet .swiper-button-prev,
.single-exhibition .swiper-button-next,
.single-exhibition .swiper-button-prev {
  top: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  outline: none;
}

.single-projet .swiper-button-next:after,
.single-projet .swiper-button-prev:after,
.single-exhibition .swiper-button-next:after,
.single-exhibition .swiper-button-prev:after {
  display: none;
}

.single-projet .swiper-button-prev,
.single-exhibition .swiper-button-prev {
  cursor: url(../img/point-prev.svg), auto;
}

.single-projet .swiper-button-next,
.single-exhibition .swiper-button-next {
  cursor: url(../img/point-next.svg), auto;
}

.swiper-slide {
  justify-content: center;
  display: flex;
}

.single-projet .lien-insta,
.single-exhibition .lien-insta,
.single-projet .burger,
.single-exhibition .burger {
  display: none;
}

.single-projet main,
.single-exhibition main {
  padding: 0;
}

.hide-content {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 0;
  transition: all 0.5s ease;
  z-index: 19;
  background-color: black;
  color: #fff;
}
.hide-content a {
  color: #fff;
}

.hide-content.visible {
  max-height: 500px;
  transition: all 1.5s ease;
}

.hide-content .txt-jp {
  font-size: 0.95em;
}

.hide-content__inner {
  padding: 6%;
  max-width: 800px;
  margin: auto;
}

@media (min-width: 768px) {
  .hide-content__inner {
    padding: 3% 6%;
  }
}

.entry-content-projet,
.entry-content-exhibition {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  padding: 6%;
  margin: 0;
}

@media (min-width: 768px) {
  .entry-content-projet,
  .entry-content-exhibition {
    padding: 3% 6%;
  }
}

.retour-projets,
.info-projet {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid #000;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  line-height: 0;
  overflow: hidden;
  background-color: #fff;
}

.retour-projets {
  left: 6%;
}

.retour-projets::before,
.retour-projets::after {
  content: url(../img/retour.svg);
  width: 13px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.retour-projets::after {
  transform: translateX(150%) translateY(-50%);
  opacity: 0;
}

.retour-projets:hover::before {
  transform: translateX(-250%) translateY(-50%);
  opacity: 0;
}

.retour-projets:hover::after {
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}

.info-projet {
  right: 6%;
  z-index: 20;
}

.info-projet::before {
  content: url(../img/plus.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.info-projet:hover::before {
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.info-projet.active::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.titre-projet {
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}

.titre-projet .entry-title,
.titre-projet .entry-title span {
  margin: 0;
  font-size: 1.25em;
  font-weight: normal;
}

.titre-projet .entry-title span {
  font-weight: 100;
  margin-left: 20px;
}

.swiper-slide {
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.caps-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.caps-video iframe {
  width: 86%;
  max-width: 800px;
  margin: auto;
}

.entry-content-fr {
  font-size: 1.5em;
}

@media (min-width: 768px) {
  .entry-content-fr {
    padding-right: 40px;
  }
}

.entry-content-clients h2 {
  margin-top: 0;
}

.entry-content-clients ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.entry-content-clients ul li {
  margin-right: 10px;
  display: inline;
}

.entry-content-clients ul li span {
  margin-right: 10px;
}

.entry-content-clients ul li::after {
  content: "•";
  margin-right: 10px;
}

.entry-content__main {
  margin-bottom: 2em;
}

.entry-content__main--contact .entry-content-fr {
  margin-bottom: 2em;
}

.entry-content__main--contact p {
  margin-bottom: 0;
}

.entry-content-caps em,
.entry-content-caps i {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
}

.entry-content-social {
  font-size: 1.25em;
}

@media (min-width: 768px) {
  .entry-content-social {
    text-align: right;
  }
}

.header-shop {
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.site-header-cart .cart-contents:after {
  content: url(../img/panier.svg);
  margin-left: 20px;
}

.site-header-cart {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header-cart li:last-child {
  display: none;
}

.woocommerce-loop-product__title {
  float: left;
}

.price {
  display: block;
  font-size: 1.2em;
  margin-block-start: 1.1em;
  margin-block-end: 1.1em;
}

.archive .product .price {
  float: right;
}

ul.products li.product .button {
  clear: both;
  margin-top: 20px;
  display: none;
}

table.shop_table_responsive tbody tr td,
table.shop_table_responsive tbody tr th {
  border-top: 1px solid #000 !important;
}

.product_meta {
  display: none;
}

.single-product .summary form {
  display: flex;
}

.woocommerce-product-gallery__image {
  text-align: center;
}

.woocommerce-product-gallery__image > a {
  display: inline-block;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .woocommerce-product-gallery__trigger {
  padding: 20px;
  top: 0;
  right: 0;
  z-index: 3;
}

.woocommerce-loop-product__link {
  display: block;
}

.cart-contents .count {
  margin-left: 0.5em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.75em;
  margin-top: 5em;
}

.site-info {
  text-align: right;
}

.site-footer::before,
.site-footer::after {
  display: none;
}

.site-footer .sep-footer {
  margin: 0 0.35em;
}

.cache {
  display: none;
}

@media (max-height: 480px) {
  body {
    font-size: 14px;
  }
  .home-proj h2 {
    font-size: 1rem;
  }
  .site-header,
  .entry-content-projet,
  .entry-content-exhibition {
    padding: 1% 6%;
  }
  .site-header {
    padding: 0 6%;
  }
  .custom-logo-link img {
    width: 180px;
    padding: 10px 0 0;
  }
  .home .custom-logo-link img {
    padding-bottom: 10px;
  }

  .burger,
  .lien-insta,
  .swiper-pagination {
    font-size: 1rem;
    width: 30px;
    height: 30px;
  }
  .retour-projets,
  .info-projet {
    width: 30px;
    height: 30px;
  }
  .titre-projet .entry-title,
  .titre-projet .entry-title span {
    font-size: 1rem;
  }
  .lien-insta {
    top: 12px;
  }
  .burger,
  .lien-insta,
  .swiper-pagination {
    width: 30px;
    height: 30px;
  }
  .menu__item--main {
    font-size: 1rem;
  }
  .main-navigation .menu__link--main {
    padding: 0;
  }
}
