/*
Theme Name: Air Pur Studio
Author: #lesinterfacesdelamort
Author URI: https://www.lesinterfacesdelamort.com/
Description: ...
Version: 1.0
Text Domain: aps
*/

html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}

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

@font-face {
  font-family: 'Recharge Rg';
  src: url('RechargeRg-Bold.woff2') format('woff2'),
    url('RechargeRg-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}


*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #dddddd;
}

*::-webkit-scrollbar-thumb {
  background-color: #444444;
  outline: 0px solid slategrey;
}

body {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Colors */
  --color-text: #000;
  --color-bg-main: #fff;
  --color-menu-item: #fff;
  --color-menu-item-hover: #96c124;
  --color-bg-menu: #cbf3ee;
  --color-bg-facts: #000;
  --color-text-facts: #fff;
  --color-bg-img: #000;
  --color-bg-more: #96c124;
  --color-nav: #ddd;
  --color-nav-hover: #000;
  --color-link: #000;
  --color-link-hover: #333;
}

/* Page Loader */
.js .loading::before {
  content: '';
  position: fixed;
  z-index: 10000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}

.js .loading::after {
  content: '';
  position: fixed;
  z-index: 10000000;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  pointer-events: none;
  opacity: 0.5;
  background-image: url(img/lazy-loading.svg);
  background-repeat: no-repeat;
  background-size: 100px 100px;
  background-position: center center;

  animation: loaderAnim 0.8s ease-in infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5,0.5,1);
  }
}

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
}

a:hover,
a:focus {
  color: var(--color-link-hover);
  outline: none;
}

.font-white {
  color: #fff !important;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

button {
  border: 0;
  background: none;
  margin: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
}

button:focus {
  outline: none;
}

/* cookies notice */
#cookie-notice {
  -webkit-box-shadow: 0px -50px 60px 0px rgba(44,168,223,1);
  -moz-box-shadow: 0px -50px 60px 0px rgba(44,168,223,1);
  box-shadow: 0px -50px 60px 0px rgba(44,168,223,1);
}
.cookie-notice-container {
  padding: 5rem 10px;
  font-size: 1rem;
  line-height: 2.3;
}
.cookie-notice-container #cn-notice-text {
  display: block;
  margin-bottom: 1rem;
}
#cookie-notice .cn-button {
  padding: 0.5rem;
  border-radius: 4px;
  display: block;
  margin-top: 1rem;
}
#cookie-notice #cn-accept-cookie {
  background-color: #2CA8DF;
  color: #fff;
}
#cookie-notice #cn-refuse-cookie {
  background-color: #ff0000;
  color: #fff;
}
#cookie-notice #cn-more-info {
  background-color: #96C124;
  color: #fff;
}

/* Icons */
.icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.sections__header {
  padding: 1rem 1rem 0 1rem;
  display: flex;
}
.logo a {
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(img/air-pur-studio-logo.svg);
  background-size: 100px 100px;
  background-position: center center;
  background-repeat: no-repeat;
}
.menu {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 3000;
  display: grid;
  grid-template-columns: 100%;
  pointer-events: none;
  align-items: start;
}

.menu::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  right: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}

.menu--open::before {
  opacity: 1;
  pointer-events: auto;
}

.menu__inner {
  padding: 4rem 2rem 0 0;
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  opacity: 1;
  position: relative;
  text-align: right;
}

.menu__toggle {
  position: absolute;
  top: 0;
  right: 0;
  margin: 2.3rem 2rem;
  display: grid;
  grid-template: 100% / 100%;
  pointer-events: auto;
  cursor: pointer;
}

.menu__toggle-inner {
  display: block;
  grid-area: 1 / 1 / 1 / 1;
}

.menu__toggle-inner--close {
  opacity: 0;
  color: var(--color-menu-item);;
}

.menu__item {
  font-size: 1.7rem;
  margin: 0 0 1rem;
  font-weight: bold;
  opacity: 0;
}

.menu--open .menu__item {
  pointer-events: auto;
}

.menu__inner .menu__item a {
  color: var(--color-menu-item);
}

.menu__inner .menu__item a:hover {
  color: var(--color-menu-item-hover);
}

.sections__index,
.sections__nav {
  display: none;
}

.facts {
  display: none;
}
#map {
  width: 100%;
  height: 300px
}
.section__content {
  padding: 4rem 1rem 1rem;
}
.search .section__content,
.archive .section__content,
.blog .section__content
{
  padding: 1rem 1rem 0 1rem;
}
.section__content {
  line-height: 1.75;
}
#comment,
.wpcf7-form-control
{
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #bbb;
}
#commentform #author,
#commentform #email,
#commentform #url
{
  width: 100%;
}
.form-submit {
  text-align: right;
  padding-bottom: 4rem;
}
.woocommerce a.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce ul.products li.product .button,
.form-submit .submit,
.wpcf7-form-control.wpcf7-submit,
.vc_general.vc_btn3,
.woocommerce button.button.alt
{
  cursor: pointer;
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  padding: 1rem !important;
  border-radius: 5px !important;
  font-weight: normal !important;
  text-align: center !important;
  transition: all .2s ease-in-out;
}
.woocommerce ul.products li.product .button:hover,
.form-submit .submit:hover,
.wpcf7-form-control.wpcf7-submit:hover,
.vc_general.vc_btn3:hover,
.woocommerce button.button.alt:hover
{
  transform: scale(1.1);
}
.woocommerce .quantity .qty {
  width: 3.631em;
  text-align: center;
  padding: 0.87rem !important;
  border-radius: 5px !important;
  border: 1px solid #ccc;
}
#player-controls {
  display: none;
}
.section__sidebar {
  background: #000;
  color: #ccc;
}
.section__sidebar a {
  color: #fff
}
.section__sidebar .widget-title {
font-weight: normal;
    color: #fff;
    border-bottom: 1px solid #2ca8df;
    margin-top: 0;
    padding-bottom: 10px;
}
.section__title {
  font-family: 'Recharge Rg';
  font-size: 8vw;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.section__sidebar .widget {
  padding: 1rem;
}
.section__sidebar .widget ul {
padding: 0 0 0 1rem;
margin-bottom: 0;
}
.section__sidebar .widget_search {
  background-color: var(--color-bg-more);
}
.section__sidebar .widget_search form {
display: flex;
    align-items: center;
}
.section__sidebar .widget_search form label {
width: 100%;
}
.section__sidebar .widget_search .search-field {
  width: calc(100% - 10px);
  background-color: var(--color-bg-more);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 15px;
  padding: 3px 8px;
}
.section__sidebar .widget_search .search-field::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 0.5; /* Firefox */
}
.section__sidebar .widget_search .search-submit {
  width: 30px;
  height: 30px;
  background-image: url(img/search.svg);
  background-size: 28px 28px;
  background-position: center center;
  background-repeat: no-repeat;
}
.woocommerce-page .section__title,
.search .section__title,
.archive .section__title,
.blog .section__title,
.page-template-default .section__title,
.single-project .section__title,
.single-post .section__title
{
  margin: 0 0 2rem;
  line-height: 1.3;
  font-size: 5.5vw;
  position: relative;
  overflow: inherit;
  overflow-wrap: break-word;
}

.section__title span {
  display: inline-block;
}

.section__title.bi-color .char1,
.section__title.bi-color .char2,
.section__title.bi-color .char3,
.section__title.bi-color .char5,
.section__title.bi-color .char6,
.section__title.bi-color .char7
{
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  color: transparent;
}

.section__description {
  line-height: 1.75;
  overflow: hidden;
  position: relative;
  margin-top: 8vw;
}

.section__description-inner {
  display: block;
}

.section__img {
  /*height: 45vh;
  pointer-events: none;*/
}

.section__img.video {
  height: auto;
  padding-bottom: 0rem;
  pointer-events: auto;
  z-index: inherit;
}

.section__img-inner {
  width: 100%;
  height: 100%;
  height: 228px;
  background-size: cover;
  background-position: center center;
}

/* cover */
#cover {
  display: none;
  cursor: pointer;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .7s ease-in-out;
}
#cover.removed {
  position: absolute;
  top: -100vh;
}

#cover svg {
  width: 80%;
  height: auto;
}

#cover-vague-noire {
  stroke: #ffffff;
  stroke-width: 2;
  fill: transparent;
  stroke-dasharray: 2069.431;
  stroke-dashoffset: 2069.431;
  animation: DrawCoverLogoNoir 2s ease-in-out alternate 1s 1 forwards, FillCoverLogoNoir .3s ease-in-out alternate 7s 1 forwards;
}
@keyframes DrawCoverLogoNoir {
  0% { stroke-dashoffset: 2069.431; } 1% { stroke: #fff; } 100% { stroke-dashoffset: 0; stroke: #fff; }
}
@keyframes FillCoverLogoNoir {
  0% { stroke-width: 2; fill: transparent; } 1% { stroke-width: 2; } 100% { stroke-width: 0; fill: #000000; }
}

#cover-logo-bleu {
  stroke: #ffffff;
  stroke-width: 2;
  fill: transparent;
  stroke-dasharray: 1631.087;
  stroke-dashoffset: 1631.087;
  animation: DrawCoverLogoBleu 2s ease-in-out alternate 3s 1 forwards, FillCoverLogoBleu .3s ease-in-out alternate 7s 1 forwards;
}
@keyframes DrawCoverLogoBleu {
  0% { stroke-dashoffset: 1631.087; } 1% { stroke: #ffffff; } 100% { stroke-dashoffset: 0; stroke: #ffffff; }
}
@keyframes FillCoverLogoBleu {
  0% { stroke-width: 2; fill: transparent; } 1% { stroke-width: 2; } 100% { stroke-width: 0; fill: #2CA8DF; }
}

#cover-logo-vert {
  stroke: #ffffff;
  stroke-width: 2;
  fill: transparent;
  stroke-dasharray: 1814.452;
  stroke-dashoffset: 1814.452;
  animation: DrawCoverLogoVert 2s ease-in-out alternate 4s 1 forwards, FillCoverLogoVert .3s ease-in-out alternate 7s 1 forwards;
}
@keyframes DrawCoverLogoVert {
  0% { stroke-dashoffset: 1814.452; } 1% { stroke: #ffffff; } 100% { stroke-dashoffset: 0; stroke: #ffffff; }
}
@keyframes FillCoverLogoVert {
  0% { stroke-width: 2; fill: transparent; } 1% { stroke-width: 2; } 100% { stroke-width: 0; fill: #96C124; }
}

.cover-logo-noir{fill:#000000;}
.cover-logo-blanc{fill:#ffffff;}

#cover #vague-blanche,
#cover #air,
#cover #pur,
#cover #studio
{
  opacity: 0;
  animation: FadeIn .5s ease-in-out alternate 7s 1 forwards;
}
@keyframes FadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}

/* youtube */
.video-background {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-aspect-ratio: 16/9) {
  .video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground { width: 100%; left: 0%; }
}

.section__facts {
  padding: 2rem;
  margin: 0;
  list-style: none;
  background: var(--color-bg-facts);
  color: var(--color-text-facts);
}

.section__facts-item {
  margin: 0 0 2rem 0;
}

.section__facts-img {
  max-width: 300px;
  border-radius: 5px;
  display: block;
  cursor: zoom-in;
  margin: 2rem auto 2rem auto;
  position: relative;
}

.section__facts-img:hover::before {
  transform: rotate(-3deg);
}
.section__facts-img:hover::after {
  transform: rotate(5deg);
}

.section__facts-img::before,
.section__facts-img::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #2ca8df;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  transition: all .2s ease-in-out;
}

.section__facts-img::before {
  transform: rotate(3deg);
}

.section__facts-img::after {
  transform: rotate(-5deg);
  background: #96c124;
}

.section__facts-img img {
  max-width: none;
  width: 100%;
  border-radius: 5px;
}
.icon--grid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin: -0.75rem 0 0 -0.75rem;
}

.section__facts h3 {
  font-size: 2.85vmax;
  margin: 0 0 0.5rem;
}

.section__facts {
  font-weight: 300;
  font-size: 2vmax;
}
.section__facts-detail {
  display: block;
  line-height: 1.5;
}
.section__facts .section__facts-detail .read-more{
  pointer-events: initial;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0px 4px;
  font-weight: normal !important;
  border-radius: 5px;
}

.section__facts-item--clickable {
  display: none;
}

.section__gallery {
  grid-area: 1 / 4 / 4 / 2;
  padding: 2rem;
  display: grid;
  grid-gap: 0.75rem;
  grid-template-columns: 50% 50%;
  grid-template-rows: 2rem 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  z-index: 300;
  pointer-events: none;
  height: 100vh;
  background: var(--color-bg-facts);
}

.section__gallery-item {
  width: 100%;
  height: 100%;
  display: grid;
  pointer-events: auto;
  cursor: zoom-in;
}

.section__gallery-item--title {
  grid-area: 1 / 1 / 2 / 3;
  color: #fff;
  font-size: 1em;
  margin: 0;
}

.section__gallery-item img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  margin: auto 0;
  display: block;
  border: none !important;
}

#breadcrumbs {
  border-bottom: 1px solid #96C124;
}

#breadcrumbs a {
  font-weight: normal;
  color: #2CA8DF;
}

.read-more {
  font-weight: bold;
  color: #2CA8DF;
}

.section__more {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  z-index: 1;
}

.section__more-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.section__more-inner--bg1 {
  background-color: var(--color-bg-more);
}

.section__more-inner--bg2 {
  background-color: var(--color-bg-more);
}

.section__more-inner--bg3 {
  background-color: var(--color-bg-more);
}

.section__more-inner--bg4 {
  background-color: var(--color-bg-more);
}

.section__more-text {
  font-weight: bold;
  display: block;
  margin: 0 0 1rem 0;
  color: #fff;
}

.section__more-link {
  z-index: 1000;
  display: flex;
  cursor: pointer;
}

.section__more-linktext {
  margin: 0 0.5rem 0 0;
  line-height: 1;
}

.icon--arrowlong {
  width: 2rem;
  height: 1.25rem;
}
.comment-edit-link {
  border-radius: 5px;
  font-weight: normal !important;
  padding: 5px 7px;
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.3);
}

#virtual-contact,
.contact-box
{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: row wrap;
  line-height: 1.75;
  color: #fff;
  background: #2ca8df;
  padding: 1rem;
}
#virtual-contact a,
.contact-box a
{
  color: #fff;
}
#virtual-contact, .tel,
.contact-box .tel
{
  text-align: center;
}
#woo-links .icon--mon-compte,
#woo-links .icon--panier,
#virtual-contact .icon--facebook,
#virtual-contact .icon--instagram,
#virtual-contact .icon--youtube,
.contact-box .icon--facebook,
.contact-box .icon--instagram,
.contact-box .icon--youtube
{
  width: 44px;
  height: 44px;
  fill: transparent;
  stroke-width: 4;
  stroke: #fff;
}
#woo-links {
  display: flex;
  position: absolute;
  left: 150px;
  height: 100px;
  padding-top: 20px;
}
#woo-links a {
  position: relative;
  display: block;
  margin-right: 1rem;
  opacity: 0.4;
  transition: all .2s ease-in-out;
}
#woo-links a:hover {
  opacity: 1;
}
#woo-links .icon--mon-compte,
#woo-links .icon--panier
{
  width: 40px;
  height: 40px;
  stroke-width: 1;
  stroke: #000;
  fill: #000;
}
#woo-links .cart_count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-size: .8rem;
}
#virtual-contact .social,
.contact-box .social
{
  display: flex;
  align-items: center;
  justify-content: center;
}
#virtual-contact .social a,
.contact-box .social a
{
  display: block;
  margin: 0.5rem;
  transition: all .2s ease-in-out;
}
#virtual-contact .social a:hover,
.contact-box .social a:hover
{
  transform: scale(1.2);
}
#virtual-contact .social svg,
.contact-box .social svg
{
  display: block;
}
#virtual-contact {
  display: none;
}

#scroll_to_top {
  background: #2ca8df;
  position: fixed;
  width: 35px;
  height: 35px;
  bottom: 1rem;
  right: 1rem;
  display: none;
}
#scroll_to_top svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}
img.alignnone {
  width: 100%;
  height: auto;
}
.navigation {
  color: #fff;
  font-weight: bold;
  line-height: 1.75;
  position: relative;
  background-color: #222;
}
.navigation .nav-links .nav-previous {
  background-color: #2ca8df;
}
.navigation .nav-links .nav-next {
  background-color: var(--color-bg-more);
}
.navigation .nav-links .nav-previous,
.navigation .nav-links .nav-next
{
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.navigation .nav-links .nav-previous .icon--arrowlong,
.navigation .nav-links .prev .icon--arrowlong
{
  transform: rotate(180deg);
}
.navigation a {
  color: #fff;
  display: flex;
  flex-direction: column;
}
.navigation a .post-title {
  color: #000;
  font-weight: normal;
}
.navigation a .icon {
  vertical-align: text-bottom;
  fill: #000;
}
.woocommerce-page .screen-reader-text,
.search .screen-reader-text,
.archive .screen-reader-text,
.blog .screen-reader-text,
.page-template-default .screen-reader-text,
.single-project .screen-reader-text,
.single-post .screen-reader-text
{
  display: none;
}
.comment-list {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style-type: none;
}
.comment-list .reply {
  text-align: right;
}
.comment-list .reply .comment-reply-link {
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  font-weight: normal;
  padding: 5px 7px;
  font-size: 80%;
}
.woocommerce-page .section__content .avatar,
.search .section__content .avatar,
.archive .section__content .avatar,
.blog .section__content .avatar,
.page-template-default .section__content .avatar,
.single-project .section__content .avatar,
.single-post .section__content .avatar
{
  width: auto !important;
  height: auto !important;
  border-radius: 50%;
  margin-right: 10px;
}
.woocommerce-page .section__content .says,
.search .section__content .says,
.archive .section__content .says,
.blog .section__content .says,
.page-template-default .section__content .says,
.single-project .section__content .says,
.single-post .section__content .says
{
  margin-left: 7px;
}
#comments {
  margin-top: 2rem;
  border-top: 1px solid #96C124;
}
.comment-author.vcard {
  display: flex;
  align-items: center;
}
.comment-body {
  background-color: #eee;
  margin-bottom: 1rem;
  border-radius: 20px;
  padding: 10px;
}
.comment-list .children {
  margin: 0 0 0 0;
  padding: 0 0 0 2rem;
  list-style-type: none;
}
.comment-list .children  .comment-body {
  background-color: #f5f5f5;
  margin-bottom: 1rem;
  border-radius: 20px;
  padding: 10px;
}
.wpb_wrapper h2 {
  text-align: left !important;
  position: relative;
  padding-left: 30px;
  font-size: 6vw;
  line-height: 1.3;
  font-weight: normal !important;
}
.wpb_wrapper h2:before {
  content: " ";
  position: absolute;
  width: 20px;
  height: 2px;
  top: calc(50% - 2px);
  left: 0px;
  background: #2CA8DF;
}
.wpb_wrapper h2 span {
  font-size: inherit !important;
}
.wpb_wrapper h3 {
  text-align: left !important;
  position: relative;
  padding-left: 30px;
  font-size: 5.5vw;
  line-height: 1.3;
  font-weight: normal !important;
}
.search .section__content #articles article .entry-title,
.archive .section__content #articles article .entry-title,
.blog .section__content #articles article .entry-title
{
  text-align: left !important;
  position: relative;
  padding-left: 30px;
  line-height: 1.3;
  font-weight: normal !important;
}
.search .section__content #articles article .entry-title a,
.archive .section__content #articles article .entry-title a,
.blog .section__content #articles article .entry-title a
{
  font-weight: normal !important;
}
.wpb_wrapper h3:before,
.search .section__content #articles article .entry-title:before,
.archive .section__content #articles article .entry-title:before,
.blog .section__content #articles article .entry-title:before
{
  content: " ";
  position: absolute;
  width: 20px;
  height: 2px;
  top: calc(50% - 2px);
  left: 0px;
  background: var(--color-bg-more);
}
.wpb_wrapper h3 span {
  font-size: inherit !important;
}
.bg-click {
  position: relative;
}
.bg-click .gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-click .gallery a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.insight-project-info {
  display: flex;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 1rem 0 2rem;
}
.insight-project-info .info-item {
  width: 50%;
}
.insight-project-info .info-item-inner {
  padding: 10px;
}
.insight-project-info .info-item-inner .title {
  font-weight: bold;
}
.iframe-video {
  opacity: 0;
}

/* blog */
.search .section__content #articles article,
.archive .section__content #articles article,
.blog .section__content #articles article
{
  padding: 1rem 0 3rem;
  position: relative;
  border-radius: 5px;
  transition: all .2s ease-in-out;
}
.search .section__content #articles article:hover,
.archive .section__content #articles article:hover,
.blog .section__content #articles article:hover
{
  background-color: rgba(0, 0, 0, 0.1);
}
.search .section__content #articles article .article-vignette,
.archive .section__content #articles article .article-vignette,
.blog .section__content #articles article .article-vignette
{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 35vh;
  border-radius: 5px;
  border: 1px solid #eee;
}
.liste-projets .projet date,
.search .section__content #articles article date,
.archive .section__content #articles article date,
.blog .section__content #articles article date
{
  position: absolute;
  top: 2rem;
  right: 1rem;
  font-size: 2vmax;
  line-height: 1;
  background-color: #2CA8DF;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search .navigation,
.archive .navigation,
.blog .navigation
{
  background-color: #ddd;
  width: calc(100% + 2rem);
  padding: 1rem 1rem;
  margin: 4rem -1rem 0;
  display: flex;
  justify-content: center;
}
.search .navigation .nav-links,
.archive .navigation .nav-links,
.blog .navigation .nav-links
{
  display: flex;
}
.search .navigation .page-numbers,
.archive .navigation .page-numbers,
.blog .navigation .page-numbers
{
  line-height: 1;
  padding: 0.4rem 0.6rem;
  margin: 0 0.2rem;
  text-align: center;
  font-weight: normal;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.search .navigation .prev.page-numbers span,
.search .navigation .next.page-numbers span,
.archive .navigation .prev.page-numbers span,
.archive .navigation .next.page-numbers span,
.blog .navigation .prev.page-numbers span,
.blog .navigation .next.page-numbers span
{
  display: none;
}
.search .navigation .page-numbers.current,
.archive .navigation .page-numbers.current,
.blog .navigation .page-numbers.current
{
  background-color: rgba(255, 255, 255, 1);
}
.navigation .nav-links {
  display: block;
  height: 100%;
}
.navigation .nav-links .nav-previous,
.navigation .nav-links .nav-next
{
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.woocommerce-checkout #payment ul.payment_methods li img {
	width: auto;
}

/* full-video-player */
#full-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.page-id-7 main {
  background-image: url(img/icones-fond/drone.svg);
  background-position: 100% 100px;
  background-size: 20vh 20vh;
  background-repeat: no-repeat;
}
.page-id-9 main {
  background-image: url(img/icones-fond/video.svg);
  background-position: 100% 100px;
  background-size: 20vh 20vh;
  background-repeat: no-repeat;
}
.page-id-11 main {
  background-image: url(img/icones-fond/photo.svg);
  background-position: 100% 100px;
  background-size: 20vh 20vh;
  background-repeat: no-repeat;
}

/* projets */
.liste-projets .projet {
  padding: 1rem 0 3rem;
  position: relative;
  border-radius: 5px;
  transition: all .2s ease-in-out;
}
.liste-projets .projet .thumbnail {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 35vh;
  border-radius: 5px;
  border: 1px solid #eee;
}
.liste-projets .projet:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.liste-projets .projet a {
  color: #000;
  text-decoration: none;
  font-weight: normal;
}
.liste-projets .projet a:hover {
  text-decoration: none;
}

/*woocommerce */
.woocommerce div.product .woocommerce-tabs .panel h2 {
  clear: none;
  font-size: 5vw;
}
.woocommerce div.product .woocommerce-tabs .panel#tab-description h2 {
  display: none;
}
.woocommerce #reviews #comments ol.commentlist {
  padding: 0 0 0 0;
}
.woocommerce #reviews #comments ol.commentlist li {
  background-color: #eee;
  margin-bottom: 1rem;
  border-radius: 20px;
  padding: 10px 10px 0 10px;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 48px !important;
  height: 48px !important;
  top: 10px;
  left: 10px;
  padding: 0px;
  border: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 50px;
  border: none;
  border-radius: 0;
  padding: 0 0 0 10px;
}
.woocommerce .comment-reply-title {
  font-weight: bold;
  border-bottom: 1px solid var(--color-bg-more);
  display: block;
  margin-bottom: 1rem;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  line-height: inherit;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 33.3333%;
  display: inline-block;
  margin-top: 1rem;
}
.woocommerce div.product div.images img,
.woocommerce ul.products li.product a img
{
  border-radius: 5px;
  border: 1px solid #eee;
}

.woocommerce div.product .product_title {
  line-height: 1.1;
}
.product_meta {
  font-weight: bold;
}
.product_meta a {
  color: #2CA8DF;
}
.woocommerce-page div.product .woocommerce-tabs {
  margin-top: 2rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0 0 0 0;
  margin: 0 0 1.618em;
  overflow: hidden;
  position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  border-bottom: 3px solid #f5f5f5;
  background-color: #fff;
  display: inline-block;
  position: relative;
  z-index: 0;
  border-radius: 0;
  margin: 0 -5px;
  padding: 0 1em;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
  z-index: 2;
  border-bottom-color: var(--color-bg-more);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after
{
  display: none;
}
.woocommerce-Reviews #comments {
  border: none;
}

/* social share */
.social-sharing {
  /*display: flex;*/
  text-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 10px 20px;
}
.social-sharing span {
  font-size: 100% !important;
  padding-right: 1rem;
}

.single-project date,
.single-post date
{
  float: right;
  line-height: 1;
  background-color: #2CA8DF;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 1rem;
}

#dernier-article-bubble {
  background: #2ca8de;
  color: #fff;
}
#dernier-article-bubble div {
  width: 100%;
  padding: 1rem;
}
#dernier-article-bubble a {
  color: #fff;
}
#dernier-article-bubble strong {
  margin-right: 5px;
}
#dernier-article-bubble strong:after {
  margin-left: 5px;
  content: ':';
}

#projects-cats a {
  background: rgba(0, 0, 0, 0.2);
  color: #444;
  border-radius: 15px;
  padding: 2px 10px;
  margin: 0 8px 8px 0;
  white-space: nowrap;
  font-weight: normal;
  text-decoration: none;
  float: left;
  transition: all .2s ease-in-out;
}
#projects-cats a:hover {
  transform: scale(1.1);
  background: rgba(44, 168, 222, 1);
  color: #fff;
}


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

  #player-controls {
        display: block;
    cursor: pointer;
    background-image: url(img/mute.svg);
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 85%;
    left: -15%;
    width: 60px;
    height: 60px;
    transition: all .2s ease-in-out;
  }
  #player-controls:hover,
  #player-controls.active
  {
    background-image: url(img/unmute.svg);
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .home .section__img-inner {
    height: 100%;
  }
  #cover svg {
    width: 80vh;
    height: 80vh;
  }
  #cookie-notice .cn-button {
    display: initial;
    margin-top: 0rem;
  }
  .social-sharing {
    display: flex;
    text-align: left;
    padding: 0px 20px;
  }
  #woo-links {
    padding-top: 0;
    left: 40%;
  }
  .home #woo-links {
    left: 30%;
  }
  #woo-links .icon--mon-compte, #woo-links .icon--panier {
    width: 60px;
    height: 60px;
  }
  #woo-links .cart_count {
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: .9rem;
  }
  .sections__header {
    padding: 2rem 3rem 0 2rem;
  }
  .menu__item {
    font-size: 2.25rem;
  }
  .section__facts h3 {
    font-size: 0.8vmax;
    margin: 0 0 0.5rem;
  }
  .logo a {
    width: 128px;
    height: 128px;
    background-image: url(img/air-pur-studio-logo.svg);
    background-size: 128px 128px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all .2s ease-in-out;
  }
  .logo a:hover {
    transform: scale(1.1);
  }
  .section__title.bi-color .char1,
  .section__title.bi-color .char2,
  .section__title.bi-color .char3,
  .section__title.bi-color .char5,
  .section__title.bi-color .char6,
  .section__title.bi-color .char7
  {
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
  }
  .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .icon--arrowlong {
    width: 2rem;
    height: 1.25rem;
  }
  .icon--menu,
  .icon--close {
    width: 3rem;
    height: 3rem;
  }
  .bg-click {
    margin-bottom: 70px;
  }
  .sections {
    height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 45% 55%;
    grid-template-rows: 10rem calc(30% - 2rem) calc(44% - 2rem) calc(22% - 2rem);
    grid-template-areas: 	"header expander"
      "sections-index expander"
      "... expander"
      "sections-nav expander";
  }
  /* youtube */
  .video-background {
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 59%;
    width: 70%;
    padding-bottom: inherit;
    padding-top: inherit;
    height: 100%;

  }
  .home .video-background {
    left: 51%;
  }
  .woocommerce-page .video-foreground,
  .woocommerce-page .video-background iframe,
  .video-foreground,
  .video-background iframe {
    position: absolute;
    top: 0;
    left: -53%;
    width: 160%;
    height: 100%;
    /*pointer-events: none;*/
  }
  .home .video-foreground,
  .home .video-background iframe {
    left: -50%;
  }
  @media (min-aspect-ratio: 16/9) {
    .video-foreground { height: 300%; top: -100%; }
  }
  @media (max-aspect-ratio: 16/9) {
    .video-foreground { width: 300%; left: -90%; }
  }
  .section__title {
    font-size: 5vw;
    position: absolute;
    z-index: 100;
  }
  .woocommerce-page .section__title,
  .search .section__title,
  .archive .section__title,
  .blog .section__title,
  .page-template-default .section__title,
  .single-project .section__title,
  .single-post .section__title
  {
    font-size: 2.5vw;
    position: relative;
  }
  .search .section__title,
  .archive .section__title,
  .blog .section__title
  {
    padding-left: 2rem;
  }
  .search #breadcrumbs,
  .archive #breadcrumbs,
  .blog #breadcrumbs
  {
    margin-left: 2rem;
  }
  .menu {
    grid-template-columns: 47% 53%;
  }
  .woocommerce-page .menu,
  .page-template-default .menu,
  .single-project .menu,
  .single-post .menu
  {
    grid-template-columns: 60% 40%;
  }
  .search .menu,
  .archive .menu,
  .blog .menu
  {
    grid-template-columns: 80% 20%;
  }
  .menu__toggle {
    right: 53%;
    margin: 2.3rem 4rem 0 0;
  }
  .woocommerce-page .menu__toggle,
  .page-template-default .menu__toggle,
  .single-project .menu__toggle,
  .single-post .menu__toggle
  {
    right: 40%;
  }
  .search .menu__toggle,
  .archive .menu__toggle,
  .blog .menu__toggle
  {
    right: 20%;
  }
  .search #woo-links,
  .archive #woo-links,
  .blog #woo-links
  {
    left: inherit;
    right: 35%;
  }
  .menu__inner {
    padding: 4rem 4rem 0 0;
  }
  .insight-project-info .info-item {
    width: 33.3333%;
    font-size: inherit;
  }
  .woocommerce-page .section__img-inner,
  .search .section__img-inner,
  .archive .section__img-inner,
  .blog .section__img-inner,
  .page-template-default .section__img-inner,
  .single-project .section__img-inner,
  .single-post .section__img-inner
  {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #222;
    background-position: center center;
    width: 100%;
    height: 100%;
  }
  .woocommerce-page .section__img-inner,
  .search .section__img-inner,
  .archive .section__img-inner,
  .blog .section__img-inner,
  .page-template-default .section__img-inner,
  .single-project .section__img-inner
  {
    background-size: cover;
  }
  .woocommerce-page .section__img.video .section__img-inner,
  .page-template-default .section__img.video .section__img-inner,
  .single-project .section__img.video .section__img-inner,
  .single-post .section__img.video .section__img-inner
  {
    background-color: rgb(0, 0, 0);
    transform-origin: 50% 0%;
    opacity: 1;
    transform: translateY(0%) scale(1);
  }

  .facts {
    position: relative;
    grid-area: expander;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 200;
  }
  .woocommerce-page .facts,
  .search .facts,
  .archive .facts,
  .blog .facts,
  .page-template-default .facts,
  .single-project .facts,
  .single-post .facts
  {
    display: none;
  }
  .facts__toggle {
    font-weight: bold;
    cursor: pointer;
    width: 48%;
    padding: 0 0 0 1vw;
    margin: 0 0 0 2vw;
    height: 5rem;
    position: relative;
    display: grid;
    grid-template: 100% / 100%;
    color: var(--color-text-facts);
    pointer-events: auto;
    transition: all .2s ease-in-out;
  }
  .facts__toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-top-left-radius: 20px;
  }
  .facts__toggle-inner {
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 0.25rem;
    grid-area: 1 / 1 / 1 / 1;
    display: flex;
    padding-top: 20px;
  }
  .facts__toggle-inner--less {
    opacity: 0;
  }

  .facts__toggle .icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
  }

  .facts__toggle-text {
    line-height: 1.75;
    margin: 0 0 0 0.25rem;
  }
  .button-contentclose {
    position: absolute;
    top: 0;
    right: 0;
    margin: 2rem;
    opacity: 0;
    pointer-events: none;
    color: var(--color-text-facts);
  }
  .sections__header {
    grid-area: header;
    z-index: 1;
  }
  .sections__index {
    font-weight: bold;
    font-size: 0.75rem;
    display: block;
    align-self: end;
    padding: 0 4rem 3rem 20%;
    grid-area: sections-index;
    display: flex;
    z-index: 1;
  }
  .woocommerce-page .sections__index,
  .search .sections__index,
  .archive .sections__index,
  .blog .sections__index,
  .page-template-default .sections__index,
  .single-project .sections__index,
  .single-post .sections__index
  {
    display: none;
  }
  .sections__index-current {
    position: relative;
    overflow: hidden;
  }
  .sections__index-total {
    position: relative;
    margin: 0 0 0 8rem;
  }
  .sections__index-total::after {
    content: '';
    position: absolute;
    width: 6rem;
    height: 3px;
    top: calc(50% - 1.5px);
    right: calc(100% + 1rem);
    background: var(--color-bg-more);
  }
  .sections__index-inner {
    display: block;
    width: 1.15rem;
    color: #2ca8df;
  }
  .sections__nav {
    display: block;
    grid-area: sections-nav;
    z-index: 5;
    padding: 2rem 4rem 0;
    background: linear-gradient(0deg, #ffffff 90%, rgba(255,255,255,0));
  }
  .navigation .nav-links .nav-previous, .navigation .nav-links .nav-next {
    padding: 2rem;
    width: 50%;
  }
  .woocommerce-page .sections__nav,
  .search .sections__nav,
  .archive .sections__nav,
  .blog .sections__nav,
  .page-template-default .sections__nav,
  .single-project .sections__nav,
  .single-post .sections__nav
  {
    display: none;
  }
  .sections__nav-item {
    border: 2px solid var(--color-bg-facts);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    background: #fff;
    transition: all .2s ease-in-out;
  }

  .home .heartbeat {
    border-radius: 50%;
    -webkit-animation: heartbeat 1.0s infinite ease-in-out;
    animation: heartbeat 1.0s infinite ease-in-out;
  }
  @-webkit-keyframes heartbeat {
    0% {
      -webkit-transform: scale(1);
    }
    60% {
      -webkit-transform: scale(1.1);
    }
    80% {
      -webkit-transform: scale(1);
    }
    90% {
      -webkit-transform: scale(1.05);
    }
    100% {
      -webkit-transform: scale(1);
    }
  }
  @keyframes heartbeat {
    0% {
      transform: scale(1);
    }
    60% {
      transform: scale(1.1);
    }
    80% {
      transform: scale(1);
    }
    90% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

  .woocommerce-page .sections__nav-item,
  .search .sections__nav-item,
  .archive .sections__nav-item,
  .blog .sections__nav-item,
  .page-template-default .sections__nav-item,
  .single-project .sections__nav-item,
  .single-post .sections__nav-item
  {
    display: none;
  }
  .sections__nav-item:hover {
    border-color: var(--color-bg-more);
  }
  .sections__nav-item .icon {
    width: 100%;
    height: 100%;
    fill: #000;
  }

  .section {
    pointer-events: none;
    grid-area: 1 / 1 / 5 / 4;
    display: grid;
    grid-template-columns: 47% 25% 28%;
    grid-template-rows: 39% 39% 22%;
    grid-template-areas: 	"... slide-image slide-image"
      "slide-content slide-image slide-image"
      "... ... more";
  }
  .woocommerce-page .section,
  .page-template-default .section,
  .single-project .section,
  .single-post .section
  {
    grid-template-rows: 21% 79% 0%;
    grid-template-columns: 59% 25% 16%;
  }
  .search .section,
  .archive .section,
  .blog .section
  {
    grid-template-rows: 21% 79% 0%;
    grid-template-columns: 80% 20% 0%;
  }

  .section--current {
    pointer-events: auto;
  }
  .page-id-7 main {
    background-image: url(img/icones-fond/drone.svg);
    background-position: 45% 4vh;
    background-size: 50vh 50vh;
    background-repeat: no-repeat;
  }
  .page-id-9 main {
    background-image: url(img/icones-fond/video.svg);
    background-position: 45% 4vh;
    background-size: 50vh 50vh;
    background-repeat: no-repeat;
  }
  .page-id-11 main {
    background-image: url(img/icones-fond/photo.svg);
    background-position: 45% 4vh;
    background-size: 50vh 50vh;
    background-repeat: no-repeat;
  }
  .section__content {
    padding: 0 4rem;
    grid-area: slide-content;
  }
  .woocommerce-page .section__content,
  .search .section__content,
  .archive .section__content,
  .blog .section__content,
  .page-template-default .section__content,
  .single-project .section__content,
  .single-post .section__content
  {
    padding: 0 4rem 4rem;
    overflow: auto;
  }
  .search .section__content,
  .archive .section__content,
  .blog .section__content
  {
    padding: 0 2rem 0;
  }
  .search .section__content #articles,
  .archive .section__content #articles,
  .blog .section__content #articles
  {
    display: flex;
    flex-wrap: wrap;
  }
  .woocommerce-page .section__content #articles {
    display: block !important;
    flex-wrap: inherit;
    padding: 0 2rem;
  }
  .search .section__content #articles article,
  .archive .section__content #articles article,
  .blog .section__content #articles article
  {
    width: 25%;
    padding: 2rem;
    margin-bottom: 2rem;
  }
  .woocommerce-page .section__content img,
  .search .section__content img,
  .archive .section__content img,
  .blog .section__content img,
  .page-template-default .section__content img,
  .single-project .section__content img,
  .single-post .section__content img
  {
    width: 100%;
    height: auto;
  }
  .page-template-default .section__content a,
  .single-project .section__content a,
  .single-post .section__content a
  {
    font-weight: bold;
    color: #2CA8DF
  }
  .woocommerce-page .section__content a:hover,
  .search .section__content a:hover,
  .archive .section__content a:hover,
  .blog .section__content a:hover,
  .page-template-default .section__content a:hover,
  .single-project .section__content a:hover,
  .single-post .section__content a:hover
  {
    text-decoration: underline;
  }
  .wpb_wrapper h2 {
    font-size: 2.1vw;
    padding-left: 40px;
  }
  .wpb_wrapper h3 {
    font-size: 1.6vw;
    padding-left: 40px;
  }
  .wpb_wrapper h2:before,
  .wpb_wrapper h3:before
  {
    width: 30px;
  }
  .section__expander {
    grid-area: 1 / 2 / 4 / 4;
    background: var(--color-bg-facts);
    transform-origin: 0 0;
    left: -2vw;
    position: relative;
    z-index: 100;
  }
  .section__img {
    height: auto;
    grid-area: slide-image;
    overflow: hidden;
    z-index: 99;
    height: 80%;
  }
  .section__img.video {
    height: 81%;
    /*z-index: -1;*/
  }
  .home .section__img {
    height: 100%;
  }
  .woocommerce-page .section__img,
  .search .section__img,
  .archive .section__img,
  .blog .section__img,
  .page-template-default .section__img,
  .single-project .section__img,
  .single-post .section__img
  {
    background-color: #000;
    pointer-events: inherit;
  }
  .section__img.video {
    padding-bottom: 0rem;
  }
  .section:fist-of-type .section__img {
    background: var(--color-bg-img);
  }
  .section__facts-item--clickable {
    display: block;
  }
  .section__gallery {
    grid-template-columns: repeat(2, calc(200px + 2rem));
    grid-gap: 1rem;
    padding: 5vh 5vw;
    background: transparent;
    position: relative;
    display: none;
  }
  .section__gallery-item {
    padding: 0 0 0 1rem;
    opacity: 0;
  }
  .section__more {
    grid-area: more;
  }
  .section__facts {
    padding: 5vh 1vw;
    pointer-events: none;
    background: transparent;
    position: relative;
    z-index: 200;
    grid-area: 1 / 2 / 4 / 3;
  }
  .section--current .section__facts a {
    color: #fff !important;
    transition: all .2s ease-in-out;
  }
  .section--current .section__facts.h3-clickable a {
    pointer-events: auto;
    color: #2CA8DF !important;
  }
  .section__facts-detail {
    font-size: 0.75vmax;
    /*
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    */
  }
  .section__more-inner {
    padding: 0;
  }
  .sections--factsopen .sections__nav,
  .sections--factsopen .section__facts-item--clickable .section__facts-img,
  .sections--factsopen .facts__toggle {
    pointer-events: none;
  }
  .sections--factsopen .button-contentclose,
  .section--current .section__facts-item--clickable,
  .sections--factsopen .section__gallery-item {
    pointer-events: auto;
  }
  .js .section:not(.section--current) {
    pointer-events: none;
  }
  .js .section:not(.section--current) .section__title span,
  .js .section:not(.section--current) .section__description,
  .js .section:not(.section--current) .section__img-inner,
  .js .section:not(.section--current) .section__more-inner,
  .js .section:not(.section--current) .section__more-text,
  .js .section:not(.section--current) .section__more-link,
  .js .section:not(.section--current) .section__facts-item {
    opacity: 0;
  }
  .contact-box {
    position: absolute;
    height: calc(22% - 2rem);
    z-index: 5;
    left: 14rem;
    bottom: 0;
    width: calc(50% - 18rem);
  }
  .single-project .contact-box,
  .single-post .contact-box
  {
    left: 27rem;
    display: none;
  }
  .woocommerce-page .contact-box,
  .page-template-default .contact-box
  {
    left: 59%;
    width: 41%;
  }
  .search .contact-box,
  .archive .contact-box,
  .blog .contact-box
  {
    left: inherit;
    right: 0;
    width: 20%;
  }
  .navigation .nav-links {
    display: flex;
    height: 100%;
  }
  .navigation {
    color: #fff;
    line-height: 1.75;
    position: absolute;
    width: 41%;
    height: 18%;
    right: 0;
    bottom: 0;
  }
  .search .section__content #articles article .article-vignette,
  .archive .section__content #articles article .article-vignette,
  .blog .section__content #articles article .article-vignette
  {
    height: 20vh;
  }
  .liste-projets .projet date,
  .search .section__content #articles article date,
  .archive .section__content #articles article date,
  .blog .section__content #articles article date
  {
    position: absolute;
    top: 3rem;
    right: 1rem;
    font-size: 0.7vmax;
    padding: 5px 10px;
  }
  .search .navigation,
  .archive .navigation,
  .blog .navigation
  {
    width: calc(100% + 4rem);
    position: relative;
    height: auto;
    right: inherit;
    bottom: inherit;
    padding: 3rem 1rem 4.5rem;
    margin: 0 -2rem;
    display: flex;
    justify-content: center;
  }
  .search .navigation .prev.page-numbers span,
  .search .navigation .next.page-numbers span,
  .archive .navigation .prev.page-numbers span,
  .archive .navigation .next.page-numbers span
  .blog .navigation .prev.page-numbers span,
  .blog .navigation .next.page-numbers span
  {
    display: block;
    margin: 0 1rem;
  }
  .section__sidebar {
    position: absolute;
    width: 20%;
    right: 0;
    height: calc(78% + 2rem);
    overflow: auto;
    font-weight: 300;
    line-height: 1.4;
    font-size: 0.75vmax;
  }
  .liste-projets {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2rem;
  }
  .liste-projets .projet {
    width: 50%;
    padding: 2rem;
  }
  .liste-projets .projet .thumbnail {
    height: 30vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
    border: 1px solid #eee;
  }
  #virtual-contact {
    display: block;
    border-top: 1px solid var(--color-bg-more);
    margin: 4rem -4rem -4rem;
    padding: 1rem 1rem 2rem;
    background-color: #fff;
  }
  #virtual-contact a,
  #virtual-contact .tel
  {
    color: #000;
  }
  #virtual-contact .icon--facebook, #virtual-contact .icon--instagram, #virtual-contact .icon--youtube {
    stroke-width: 2;
    stroke: #000;
  }
  .woocommerce-page #virtual-contact,
  .single-post #virtual-contact {
    padding: 1rem 1rem 3rem;
  }
  .woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 1vw;
  }
  #dernier-article-bubble {
    position: absolute;
    top: 2rem;
    right: 3rem;
    z-index: 99;
    width: 15vh;
    height: 15vh;
    border-radius: 50%;
  }
  #dernier-article-bubble div {
    transform: rotate(10deg);
    width: 100%;
    height: 100%;
    padding: 0;
  }
  #dernier-article-bubble strong {
    margin-right: 0;
  }
  #dernier-article-bubble strong:after {
    display: none;
  }
  #dernier-article-bubble a {
    color: #fff;
    padding: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }

}

@media screen and (max-width: 54.9em), screen and (max-height: 39.9em) {
  .js .section__title span,
  .js .section__description,
  .js .section__img-inner,
  .js .section__more-inner,
  .js .section__more-text,
  .js .section__more-link,
  .js .section__facts-item,
  .js .section__gallery-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .lidlm-icon .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid;
    padding: 0.5rem;
  }
}
