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

body {
  margin: 0 0px;
  font-size: 12px;
  font-family: var(--font);
  line-height: 1.5; 
  background: var(--mainColor);
  min-height: 100vh;
background: linear-gradient(0deg, var(--mainColor) 0%, rgba(255, 255, 255, 1) 90%);
}

ul, ol {margin: 0; padding: 0;}
li {list-style: none;}

a {
  color: #000;
  text-decoration: none; 
}

p a {
  text-decoration: underline;
}

img {
  width: 100%; }

figure {
  margin: 0; }

h2 {
  font-family: var(--titleFont);
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 10px;
  margin-top: 0px;
  letter-spacing: 0.02em; 
}

h3 {
  font-family: var(--titleFont);
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 40px;
  letter-spacing: 0.03em; 
}

.block-type-heading + .block-type-text p{
  margin-top: 0;
}

h4 {
  font-family: var(--titleFont);
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
}

p {
  margin-top: 20px;
  margin-bottom: 20px; }

video{
  max-width: 100%;
}

figure figcaption,
 figure figcaption p,
  figure figcaption a,
.article-cover figcaption {
  font-size: 14px;
  padding-top: 5px;
  color: #3F3F3F;
/*  font-style: italic; */
  margin:0;
}

.block-type-video{
  margin-top: 40px;
  margin-bottom: 40px;
}

.article .block-type-gallery{
  margin-top: 40px;
  margin-bottom: 40px;
}

.article .block-type-gallery ul {
  margin: 0px -1rem;
  padding: 0;
}

.article .block-type-gallery li{
  list-style: none;
}

/* GLIGHTBOX CUSTOM */
.glightbox-clean .gslide-description{
  background: transparent;
}

.glightbox-clean .gdesc-inner{
  padding:0;
}

.glightbox-clean .gslide-title{
  color: lightgray;
  text-transform: none;
  font-size: 15px;
}

.glightbox-clean .gslide-title a{
  color: lightgray;
  text-decoration: underline;
}

#map{
  margin-top: 40px;
  margin-bottom: 40px;
}

.video-from-web{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.video-from-web iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border:none;
}

.video-from-web figcaption{
  margin-top: 40px;
}

/* fade entre les pages */
#fade{
  opacity: 0;
  transition: opacity 1s ease-out;
}

#fade.loaded{
  opacity: 1;
}

header {
  width: 100%;
  max-width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: #FFF;
  z-index: 10000;
  padding: 15px;
  /*border-bottom: 1px solid #000; */
}

header.row {
  margin: 0; 
}
header a { text-decoration: none; }
header .site_logo {padding: 0; }
header .site_logo h1 {
  margin: 0;
  font-family: var(--titleFont);
  font-size: var(--siteTitleMobile);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2; 
  text-align: center;
}

header .site_logo h1 a {
  color: #000;
  background: transparent; 
}

header .menu_btn {
  display: block;
  position: fixed;
  z-index: 1000;
  top: 19px;
  right: 15px;
  margin: 0px;
  cursor: pointer;
  height: 24px;
  width: 35px; 
  transition: all 0.5s ease;
}

header .menu_btn:hover {
  opacity: 0.8; 
}
    
    header .menu_btn.span-checked {
      height: 28px;
      width: 28px; }
    header .menu_btn span {
      display: block;
      background: #000;
      height: 3px;
      width: 35px;
      position: absolute;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    header .menu_btn span:nth-child(1) {
      top: 0px; }
    header .menu_btn span:nth-child(2) {
      top: 10px; }
    header .menu_btn span:nth-child(3) {
      top: 20px; }
  header nav {
    width: 100%;
    background: #FFF;
    text-align: right;
    position: absolute;
    top: 0;
    right: -100%;
    height: 100%;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; }
    header nav .main-nav_first-level {
      text-transform: uppercase;
      font-size: 17px;
      font-family: var(--titleFont);
      padding: 20px;
      letter-spacing: 1px; }
      header nav .main-nav_first-level li {
        margin-right: 20px;
        margin-bottom: 3px; }
        header nav .main-nav_first-level li a {
          color: #000; }
        header nav .main-nav_first-level li a:hover {
          font-style: italic; 
          text-decoration: underline;
        }
        header nav .main-nav_first-level li.active {
          font-style: italic;
          text-decoration: underline; 
        }
  header #toggle-menu:checked ~ nav {
    right: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; }
  header #toggle-menu + label {
    width: 100%;
    text-align: right; }
  header #toggle-menu .span-nochecked, header #toggle-menu .span-checked {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer; }
  header #toggle-menu + label .span-nochecked {
    display: block;
    cursor: pointer; }
  header #toggle-menu + label .span-checked {
    display: none;
    cursor: pointer; }
  header #toggle-menu:checked + label .span-nochecked {
    display: none; }
  header #toggle-menu:checked + label .span-checked {
    display: block; }
    header #toggle-menu:checked + label .span-checked span:nth-child(1) {
      -webkit-transform: rotatez(45deg);
      -ms-transform: rotate(45deg);
      transform: rotatez(45deg);
      -webkit-transform-origin: 0%;
      left: 2px; }
    header #toggle-menu:checked + label .span-checked span:nth-child(2) {
      opacity: 0; }
    header #toggle-menu:checked + label .span-checked span:nth-child(3) {
      -webkit-transform: rotatez(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotatez(-45deg);
      -webkit-transform-origin: 15%; }
.sidebar {
  margin-bottom: 40px; 
  margin-top: 30px; 
  padding: 0;
}

.sidebar ul li {
  font-family: var(--font);
  font-size: 13px;
  text-transform: uppercase;
  margin-right: 20px;
  margin-bottom: 5px; 
}

.sidebar .tags {
  margin:0;
}

.sidebar .tags li.active,
.sidebar .tags li a:hover  {
  /*background:#000;
  cursor: default; */
  text-decoration: underline;
}

/*.sidebar ul li.active a{
  color: #FFF;
}

.sidebar ul li.active a:hover {
  color: #FFF; 
}*/

.articles h3{
  font-size: 13px;
}

.articles-type__filters{
  margin-bottom: 20px;
}

.articles-type__filters ul{
  margin:0;
}

.sidebar .articles-type__filters ul li{
  border: 1px solid #000;
  border-radius: 15px;
  padding: 5px 10px 3px 10px;
  font-family: var(--titleFont);
  font-size: 17px;
  margin-right: 15px;
}

.articles-type__filters li:hover,
.articles-type__filters li.active{
  background: #000;
}

.articles-type__filters li:hover a,
.articles-type__filters li.active a{
  color: #FFF;
}

.articles-list .filters {
  margin-top: 30px; 
}

.articles-list .filters ul {
  padding: 0;
  margin: 0; 
}

.articles-list .filters ul li {
  font-family: var(--font);
  font-size: 13px;
  text-transform: uppercase;
  margin-right: 5px;
  margin-bottom: 0; 
}
/*      .articles-list .filters ul li.active {
        background: #000;
        cursor: default; }
        .articles-list .filters ul li.active a:hover {
          color: #000; }
      .articles-list .filters ul li:after {
        content: "/"; }
      .articles-list .filters ul li:last-child:after {
        content: ""; }*/

.articles-list li {
  margin-bottom: 40px; }

.articles-list h2 {
  font-family: var(--titleFont);
  font-size: 17px;
  margin: 0;
  line-height: 1.1;
/*  text-align: center;*/
  text-transform: uppercase;
}

.articles-list .article-authors{
  margin:0;
}

.articles-list .article-authors h3:after{
  content: " |";
  margin-right: 10px;
}

.articles-list .article-authors h3:last-child:after{
  content: none;
}

.articles-list h3 {
  font-size: 13px;
  text-transform: none; 
  font-family: var(--font);
  font-weight: 400;
  margin-bottom: 3px;
  margin:0px;
}

.articles-list h3 a:hover{
  text-decoration: underline;
  font-style: italic;
} 

.articles-list .article-cover{
  transition: all 0.5s ease;
}

.articles-list .article-cover:hover{
  opacity: 0.8;
}


/*.articles-list .article-cover a {
  height: 100%;
  display: block; 
}

.articles-list .article-cover:hover a{
  background: transparent;
}*/

/*.articles-list__carte{
  position: relative;
  width: 60%;
  max-width: 1000px;
  min-width: 340px;
  margin: auto;
}*/

.map-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
/*  overflow: scroll;*/
}

.map-ratio-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.articles-carte{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  margin:0;
}

.articles-list__carte .map-background{
  width:100%;
}

.articles-list__carte .article-carte{
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.articles-list__carte .article-carte .map-spot, 
.articles-list__carte .article-carte .map-spot a{
  width: 10px;
  height: 10px;
  margin:auto;
  background: #000;
  border-radius: 100%;
  display: block;
  pointer-events: auto;
}

.articles-list__carte .article-carte .article-info-map{
  background: #FFF;
  padding: 0.3em 0.5em 0.2em 0.5em;
  width: 300px;
  opacity: 0;
  pointer-events: none;
  margin-top: 10px;
  box-shadow: 4px 4px 12px -3px rgba(0,0,0,0.62);
  position: absolute;
  z-index: 100;
}

.articles-list__carte .article-carte .map-spot:hover + .article-info-map{
  opacity: 1;
}

.article-films .block-type-video {
  margin-top: 0;
  margin-bottom: 10px;
}

.article-films figure figcaption{
  display: none;
}

.article .leaflet-control-zoom a{
  text-decoration: none;
}

footer{
  padding: 15px;
}

.article_sidebar {
  padding: 0; 
  padding-top: 20px;
  column-count: 2;
  column-gap: 1em;
  margin-bottom: 40px;
}

.article_sidebar .filters {
  margin-bottom: 10px; 
}
.article_sidebar .filters ul li {
  font-family: var(--font);
  font-size: 14px;
  text-transform: uppercase; 
}

.article_sidebar .filters ul li a:hover{
  text-decoration: underline;
}

.article_sidebar .download-pdf {
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: var(--font); 
}

.article_sidebar .download-pdf a:hover {
  text-decoration: underline; 
}

.article_sidebar .author, 
.article_sidebar .date {
  font-family: var(--font);
  font-size: 14px;
  margin-bottom: 20px; 
}

.article_sidebar .author li,
.article_sidebar .enquete p{
  font-size: 14px;
  font-weight: 600;
  margin-top:0;
}

.article_sidebar .enquete p a{
  text-decoration: none;
}

.article_sidebar .author li a:hover,
.article_sidebar .enquete p a:hover{
  font-style: italic;
  text-decoration: underline;
}

.article {
  padding: 0;
  font-size: 16px; }
  .article h1 {
    font-family: var(--titleFont);
    font-size: 45px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 0;
    letter-spacing: 0.01em; }
  .article .introduction {
    font-family: var(--font);
    font-weight: bold; }
  .article h2 {
    font-family: var(--font);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 40px; }
  .article .credits {
    margin-top: 40px; }
    .article .credits p {
      font-size: 12px; }
  .article ol, .article ul {
    margin-left: 20px; }
  .article ol li {
    list-style: decimal; }
  .article ul li {
    list-style: disc; }

.related {
  border-top: 2px solid #000;
  margin-top: 40px;
  padding-top: 20px; }
  .related h2 {
    font-size: 17px;
    margin-top: 0; }
  .related h3 {
    font-family: var(--font);
    font-size: 13px;
    margin: 0;
    line-height: 1.1;
    text-transform: capitalize; }

/*.article-cover {
  margin-bottom: 40px;
}*/

article figure {
  margin-top: 40px;
  margin-bottom: 40px; }

article .row-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  article .row-images figure {
    padding-right: 20px; }

figure.small {
  width: 33.3333%;
  margin-left: auto;
  margin-right: auto; }

figure.medium {
  width: 50%;
  margin-left: auto;
  margin-right: auto; }

figure.large {
  width: 70%;
  margin-left: auto;
  margin-right: auto; }

.show-for-print {
  display: none; }

@media print {
  @page {
    margin: 1.5cm;
    size: A4; }
  .show-for-print {
    display: block; }
  header {
    display: none !important; }
  .print-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px; }
    .print-header h1 {
      text-transform: uppercase;
      font-family: var(--font);
      margin: 0; }
  main {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .related, .download-pdf {
    display: none !important; }
  a {
    background: transparent !important; }
  p a::after {
    content: " (" attr(href) ") "; }
  .easter-potato {
    display: none !important; }
  p {
    overflow: visible !important; }
  .recipe {
    page-break-inside: avoid !important; }
  .article h1 {
    text-align: center !important; }
  .filters, .author {
    text-align: center; }
  .filters li {
    display: inline-block !important; }
    .filters li:after {
      content: "/"; }
    .filters li:last-child:after {
      content: ""; } }

.show-for-small-only {
  display: block; }

.hide-for-small-only {
  display: none; }

body[data-template="default"] main {
  max-width: 1600px;
  margin: auto; 
  padding-top: 150px;
}

main {
  padding: 15px;
  padding-top: 120px;
  padding-bottom: 100px; 
}

main.row {
  margin: 0; 
}

main p, main li {
  font-size: 16px; 
}

.home {
  padding: 0;
  width: 100%;
  height: 100vh; }
  .home h1 {
    font-family: var(--font);
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
    -webkit-text-fill-color: white;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000; }
  .home h1:hover {
    -webkit-text-fill-color: #000; }
  .home a:hover {
    background: transparent; }

.default_inner {
  padding: 0; }
  .default_inner h1 {
    font-family: var(--titleFont);
    text-align: center;
    font-size: var(--articleTitleMobile);
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 0; }
  .default_inner section {
    margin-bottom: 80px;
    margin-top: 0;
  }
  .default_inner section h2 {
    border-bottom: 2px solid #000;
/*      margin-bottom: 40px;*/
    padding-bottom: 10px;
    
  }
  .block + .block-type-heading h2{
    margin-top: 40px; 
  }
  .default_inner article {
    padding-bottom: 40px;
    margin-bottom: 40px;
    margin-top: 80px; 
  }
  .default_inner .list .list-date {
    margin: 0;
    margin-bottom: 10px;
    font-family: var(--font);
    font-size: 13px; }
  .default_inner .list .list-content-header {
    padding-bottom: 10px; }
    .default_inner .list .list-content-header h1 {
      font-size: 17px;
      margin: 0; }
    .default_inner .list .list-content-header .list-subtitle {
      font-style: italic;
      margin-bottom: 20px; }
  .default_inner .list p {
    margin: 0; }
  .default_inner .list figure {
    margin: 0;
    margin-bottom: 20px; }

.default_inner ul, 
.article ul{
  padding-left: 20px;
}

.default_inner li, 
.article li{
  list-style: disc;
}

.default_inner a, 
.article a{
  text-decoration: underline;
}

.default_inner a:hover, 
.article a:hover{
  font-style: italic;
}


