h1 {
  font-family: "Big Shoulders Text", sans-serif;
  color: var(--color);
}
.intro__meta h1 {
  font-family: "Susanna", sans-serif;
  color: var(--color-bg);
  font-weight: bold;
  font-size: 5rem;
  margin-bottom: 0;
}
ul,
li {
  margin-left:20px;
}
blockquote {
  font-size: 1.5em;
  font-style: italic;
  border-left: 5px double;
  padding-left: 10px;
  margin-bottom: 30px;
  margin-left: 40px;
}
body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
}
header .navigation__logo {
  width: 200px;
}
header .navigation__logo span {
  display: inline-block;
  position: relative;
  top: -65%;
  left: 40%;
  font-family: "Susanna", sans-serif;
  font-size: 2rem;
  font-weight: bolder;
}
.navigation {
  margin-top:-2rem;
}
.navigation__list ul {
  background-color: rgba(193,193,193,0.8);
  border-radius: 2px;
}
header .navigation__list ul li {
  padding-top: 5px;
  padding-bottom: 10px;
}
header .navigation__list ul a {
  /*text-transform: capitalize;*/
  font-size: 0.9rem;
  color:var(--color);
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
}
#breadcrumb {
  position:relative;
  background: none;
  z-index: 999;
}
#breadcrumb li:not(:last-child) a {
  color:var(--color-bg);
  font-weight: bolder;
}
header #menu-burger span {
  background: #fff;
}
p img {
  position: relative;
  max-width: 100%;
}
.menu {
  position: relative;
  margin-top: -30px;
}
.menu ul,
.secondary-menu ul {
  list-style-type: none;
  display: flex;
  column-gap: 2px;
}
.menu ul li {
  background: var(--color-bg);
  border:1px solid var(--color-border);
  padding:10px 20px;
}
.menu ul li.active {
  background: var(--color-border);
}
.menu ul li.active a {
  color: var(--color-bg);
}
.secondary-menu .menu-footer {
  position: relative;
  min-height: 150px;
  top:0;
  bottom:0;
}

.secondary-menu,
.secondary-menu a,
.secondary-menu a:link,
.secondary-menu a:visited {
  background-color: var(--color);
  color:var(--color-bg);
  padding:10px;
  margin-top: -30px;
  z-index: 50;
}
.secondary-menu {
  position: relative;
  top:-36px;
}
.secondary-menu:has(> .menu-footer) {
  display: grid;
  top:0;
  align-items: center;
  justify-content: center;
}
.secondary-menu.onhome {
  top:30px;
}

.videoslide {
  position: relative;
  height: 100vh;
}
.videoslide video {
  display: block;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url("../img/bg.png") no-repeat center center;
}
.videoslide .intro__meta {
  top:50%;
  z-index: 110;
}
.videoslide .intro__meta h1 {
  margin-top:-3rem;
}

#grid {
  width:100vw;
}
.post__meta__bottom {
  position:relative;
  width:100%;
  display: flex;
  column-gap: 40px;
  margin:0 auto;
  padding: 0 40px;
}
.post__meta__bottom__tags {
}
.post__meta__bottom__tags a{
  background-color: var(--color-bg-secondary);
  margin-left:5px;
  padding:2px 5px;
}
.post__meta__bottom__socials {
  margin-left: auto;
}

/* Grid system */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 16px;
  grid-auto-rows: minmax(180px, 200px);
  grid-auto-flow: dense;
  padding: 16px 8px 72px 8px;
  max-width: 80vw;
  margin:auto;
}
.grid-item {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.grid-item:hover {
  box-shadow: 0 8px 32px 0 rgba(112, 130, 157, 0.2);
}
.grid-item-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}
.grid-item-content:hover > .grid-title {
  display: block;
}
.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:sepia(0.2) contrast(1.2) brightness(0.98) saturate(144%);
}
.grid-title {
  display: none;
  position: absolute;
  background: #fff;
  border-radius: 4px;
  padding: 10px;
  font-family: Eczar, sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  color: #70829d;
}

.grid-read-more {
  display: none;
  position: absolute;
  bottom: -60px;
  height: 70px;
  left: 0;
  right: 0;
  line-height: 70px;
  box-shadow: 0 8px 32px 0 rgba(112, 130, 157, 0.2);
  background-color: #f5f7fa;
}
.article-section,
.article-accroche {
  display: block;
  position: relative;
  margin:100px auto 0 auto;
  font-size: 18px;
  line-height: 28px;
}
.article-accroche {
  margin:0 auto;
}
.article-section h1 {
  text-align: center;
  margin:auto;
  font-family: "quicksand", sans-serif;
  font-size: 2.2rem;
  line-height: 1.5em;
  max-width: 1015px;
}
.article-section h1:before {
  display: block;
  bottom: 0;
  content: "";
  position: relative;
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
  z-index: 1;
}
.article-section h1.home:before {
  background: transparent url(../img/chaise_longue_chilienne.svg) no-repeat center/100%;
  width: 106px;
  height: 106px;
  left: 13rem;
  top:6rem;
  margin-top: -8rem;
}
.article-section h1.mh:before {
  background: transparent url(../img/mh.svg) no-repeat center/100%;
  width: 106px;
  height: 106px;
  left: 14rem;
  top:6.5rem;
  margin-top: -8rem;
}
.article-section p {
  padding: 2rem 4rem 4rem 4rem;
  align-self: center;
  justify-self: center;
  width: 60vw;
  max-width: 1015px;
  margin:auto;
  font-family: "secretcode", sans-serif;
  font-weight: lighter;
}
.article-section p.punchline {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom:0;
  padding-bottom: 0;
  text-align: center;
}
.article-section img,
.article-accroche img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: cover;
}
.article-section span,
.article-accroche span {
  display:block;
  color: var(--color-bg);
  font-size: 5rem;
  font-family: "Opensans";
  margin-top:-15vh;
  padding-bottom: 15vh;
  padding-left: 2rem;
  position: relative;
}
.article-complements,
.article-complements2 {
  display: block;
  max-width: 1000px;
  position: relative;
  margin-top: 20vh;
  line-height: 2rem;
}
.price-container .article-complements {
  width:80vw;
  margin:20vh auto auto 10vw;
}
.article-complements2 {
  margin-top: 0;
  line-height: 2.5rem;
}
.article-complements h2{
  margin:20px auto;
}
.article-complements ul{
  margin-left: 5%;
}

article.static-page ul {
  margin-left:40px;
}
.important {
  margin-bottom: 50px;
  border:1px solid #C1C1C1;
  padding:20px;
  border-radius: 5px;
  background-color: rgba(129,85,101,0.5);
}
#cartelandes a,
#cartelandes a:link,
#cartelandes a:visited,
.decouvrir a,
.decouvrir a:link,
.decouvrir a:visited,
.post_main a,
.post_main a:link,
.post_main a:visited,
.postTag a,
.postTag a:link,
.postTag a:visited,
.mentions p a ,
.mentions p a:link,
.mentions p a:visited,
.navigation_footer a,
.navigation_footer a:link,
.navigation_footer a:visited,
.menu a,
.menu a:link,
.menu a:visited,
.post__meta__bottom a,
.post__meta__bottom a:link,
.post__meta__bottom a:visited,
.article-complements a,
.article-complements a:link,
.article-complements a:visited,
.article-complements2 a,
.article-complements2 a:link,
.article-complements2 a:visited,
article.static-page a,
article.static-page a:link,
article.static-page a:visited,
article.static-page p a,
article.static-page p a:link,
article.static-page p a:visited,
article.static-page ul li a,
article.static-page ul li a:link,
article.static-page ul li a:visited,
.share a,
.share a:link,
.share a:visited  {
  color: var(--color);
}
.static-page .article-complements2 {
  padding-top: 50px;
}
.highlight {
  background:var(--color);
}
header .navigation__list ul li.highlight a {
  color:var(--color-bg);
}
.post__edit,
.post__edit:link,
.post__edit:visited {
  display: block;
  position:fixed;
  top:0;
  right:0;
  background-color: #A1A1A1;
  padding:2px 20px;
  color: var(--color-bg);
}
.decouvrir a:before {
  display: block;
  background: transparent url(../img/arrow2.svg) no-repeat center/100%;
  bottom: 0;
  content: "";
  width: 90px;
  height: 32px;
  left: 3rem;
  top:3rem;
  position: relative;
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
  z-index: 1;
}

.read-more-content {
  overflow: hidden;
  padding: 0 16px;
}

.small {
  grid-column-start: 1;
  grid-column-end: span 4;
  grid-row-start: 1;
  grid-row-end: 3;
}

.medium {
  grid-column-end: span 2;
  grid-row-end: span 2;
}

.article_medium {
  grid-column-start: 9;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: span 2;
}

.large {
  grid-column-end: span 5;
  grid-row-end: span 2;
}

.largest {
  grid-column-end: span 8;
  grid-row-end: span 2;
}

.article_desc,
.presentation {
  grid-row: 1 / span 2;
  grid-column: 1 /span 2;
  justify-self: center;
  align-self: center;
  background-color: white;
  padding: 8px 10px 50px 30px;
  border-radius: 2%;
  position: relative;
  left: 25%;
  z-index: 1;
}

.article_desc {
  grid-column-start: 4;
  left:auto;
  z-index: 1;
  padding: 5px 20px 20px 20px;
}

.fa-mastodon::before {
  content: url('../img/mastodon.png');
}
#grid .scroll-down {
  position: relative;
  left: 4rem;
  height: 100px;
  cursor: pointer;
  z-index: 999;
  animation: MoveUpDown 4s linear infinite;
  display: none;
}
@media (min-width: 769px) {
  .scroll-down {
    display: block;
  }
}
.scroll-down:hover, .scroll-down:focus {
  animation-play-state: paused;
}
.navigation_footer {
  display: grid;
  align-items: center;
  justify-content: center;
  /*height: 30vh;*/
  font-size: 0.7rem;
  background-color: #EDF5E2;
  border-top: 1px solid rgba(49, 81, 84, 0.3);
  border-bottom: 1px solid rgba(49, 81, 84, 0.3);
}
.navigation_footer .services {
  position: relative;
  left: 5vw;
  width: 200px;
}
.navigation_footer .prestations {
  position: relative;
  display: inline-grid;
  column-gap: 2vw;
  height: 100%;
  align-content: center;
  place-items: center;
  grid-template-columns: repeat(5, 1fr);
}
.navigation_footer .prestations .service {
  padding:20px;
  text-align: center;
}
.navigation_footer .prestations img {
  height: 5vh;
}
.navigation_footer ul {
  list-style: none;
  display: inline-flex;
  width: 100vw;
  position: relative;
  padding-bottom: 2vh;
  padding-top: 2vh;
  align-items: center;
  justify-content: center;
}
.mentions {
  padding-left: 2rem;
  font-size: 0.8rem;
  margin-bottom: 130px;
}
.mentions p {
  margin-bottom: 2rem;
}
.container {
  margin:0 auto;
  max-width: 1000px;
}
.container h2 {
  text-align: center;
  font-family: "quicksand", sans-serif;
  margin-bottom: 2rem;
}
.container .post__content h2 {
  margin-bottom: 3rem;
}
.idee,
.tente,
.homme-couche {
  display: inline-block;
  margin-bottom: 2rem;
  margin-top: -2rem;
}
.idee {
  position: relative;
  left: 38%;
}

.idee:before,
.roulotte:before,
.tente:before,
.tente2:before,
.machine:before,
.jeux:before,
.couverts:before,
.piscine:before,
.homme-couche:before {
  display: block;
  margin-bottom: -2rem;
  content: "";
  position: relative;
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
  z-index: 1;
  background: transparent url(../img/homme_couche.svg) no-repeat center/100%;
  width: 70px;
  height: 82px;
  left: -6rem;
  top: 1rem;
  margin-top: 0;
}
.tente:before {
  background: transparent url(../img/canadienne.svg) no-repeat center/100%;
  margin-bottom: -3rem;
}
.tente2:before {
  background: transparent url(../img/tente.svg) no-repeat center/100%;
  margin-bottom: -3rem;
  left:10rem;
}
.machine:before {
  background: transparent url(../img/machine.svg) no-repeat center/100%;
  margin-bottom: -3rem;
  left:28rem;
}
.jeux:before {
  background: transparent url(../img/femme_qui_saute.svg) no-repeat center/100%;
  margin-bottom: -3rem;
  left:28rem;
}
.piscine:before {
  background: transparent url(../img/piscine.svg) no-repeat center/100%;
  margin-bottom: -3rem;
  left:22rem;
}
.couverts:before {
  background: transparent url(../img/couverts.svg) no-repeat center/100%;
  margin-bottom: -3rem;
  left:22rem;
}
.roulotte:before {
  background: transparent url(../img/roulotte.svg) no-repeat center/100%;
  margin-bottom: -3rem;
  margin-left: 6rem;
}
.idee:before {
  background: transparent url(../img/ampoule.svg) no-repeat center/100%;
  margin-bottom: -3rem;
}
.post__content {
  display: grid;
  width:120%;
  grid-template-columns: 1fr 33%;
  position:relative;
}

.post__img img {
  left:-40%;
  top:-50vh;
  margin:none !important;
}

.infos {
  font-size: 0.8rem;
  border: 1px solid;
  border-radius: 5px;
  color: var(--color-bg);
  background-color: var(--color);
  padding: 20px;
}
.infos h3 {
  text-align: center;
  margin-bottom: 2rem !important;
}
.infos p,
.infos ul {
  margin:10px auto 10px auto !important;
  -webkit-padding-start: 20px;
  padding-inline-start: 20px;
}
.infos ul li {
  margin-left:-15px;
}

.infos p img {
  position: relative;
  max-width: 100%;
  margin-left:-9px !important;
}

.posts__list {
  margin: 0 auto 50px auto;
}

.posts__list .post figure {
  background: #A1A1A1;
  border:2px solid var(--color-text-secondary);
}

.imgTag {
  max-width: 100%;
  margin:auto;
}
.postTag {
  padding:20px;
  border:1px solid #aaa;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: white;
}
.postTag a {
  display: inline-block;
  width: 100%;
  text-align: right;
}

/*////////////////////////////////////////////*/
/*//////////// TABLES       //////////////////*/
/*////////////////////////////////////////////*/

/*https://codepen.io/Creaticode/pen/ZEwjPg*/

h3.tarifs {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}

.price-container {
  display: grid;
  grid-template-columns:repeat(4, 300px);
  column-gap: 5px;
  position: relative;
  left: -8vw;
  top:1vh;
  margin-bottom: 15vh;
}
.price-container.mini {
  grid-template-columns:repeat(3, 300px);
}
.pricing-table-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color);
  margin-top: 15px;
  text-align: left;
  padding-left: 20px;
  margin-bottom: 25px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  display: inline-block;
  min-height: 1.2rem;
}

.pricing-table-title a {
  font-size: 0.6em;
}

.clearfix:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  clear: both;
}
/** ========================
 * Contenair
 ============================*/
.pricing-wrapper {
  width: 960px;
  margin: 40px auto 0;
}
.price-container.mini .pricing-wrapper {
   margin-left:40%;
}

.pricing-table {
  margin: 0 10px;
  text-align: center;
  width: 300px;
/*  float: left;*/
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.4);
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: #fcfcf1;
}

.pricing-table:hover {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}

.pricing-title {
  color: var(--color-bg);
  background-color: var(--color);
  padding: 20px 0;
  font-size: 1.5em;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.pricing-table.recommended .pricing-title {
  background: #12BC00;
}

.pricing-table.recommended .pricing-action {
  background: #12BC00;
}
.accent {
  background: #1ac695;
  min-height: 125px;
}
.recommended .pricing-title.accent {
  background: #53a015;
}
.pricing-table.recommended {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}

.pricing-table .price {
  background: #403e3d;
  color: var(--color-bg);
  font-size: 3.4em;
  font-weight: 700;
  padding: 20px 0;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.pricing-table .price sup {
  font-size: 0.4em;
  position: relative;
  left: 5px;
}

.table-list {
  background: #FFF;
  color: #403d3a;
  list-style-type:none;
}

.table-list {
  margin-left:0 !important;
}
.table-list li {
  font-size: 1.4em;
  font-weight: 700;
  padding: 12px 8px;
  margin-left:0 !important;
}

.table-list li:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  color: #3fab91;
  display: inline-block;
  position: relative;
  right: 5px;
  font-size: 16px;
}

.table-list li span {
  font-weight: 400;
}

.table-list li span.unlimited {
  color: #FFF;
  background: #e95846;
  font-size: 0.9em;
  padding: 5px 7px;
  display: inline-block;
  -webkit-border-radius: 38px;
  -moz-border-radius: 38px;
  border-radius: 38px;
}


.table-list li:nth-child(2n) {
  background: #F0F0F0;
}

.table-buy {
  background: #FFF;
  padding: 15px;
  text-align: left;
  overflow: hidden;
}

.table-buy p {
  float: left;
  color: #37353a;
  font-weight: 700;
  font-size: 2.4em;
}

.table-buy p sup {
  font-size: 0.5em;
  position: relative;
  left: 5px;
}

.table-buy .pricing-action {
  float: right;
  color: #FFF;
  background: #e95846;
  padding: 10px 16px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 1.4em;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.table-buy .pricing-action:hover {
  background: #cf4f3e;
}

.recommended .table-buy .pricing-action:hover {
  background: #228799;
}


/*////////////////////////////////////////////*/
/*//////////// TABLES       //////////////////*/
/*////////////////////////////////////////////*/

.iframe-wrapper {
  text-align: center;
}
.trajet section h2{
  margin:40px auto;
}
.resa {
  /*box-shadow: 0 -1px 6px rgba(0,0,0,.2);*/
  padding:10px;
  background: var(--color-bg);
  border-radius: 5px 5px 0 0;
}
.resa h1 {
  text-align: center;
  font-size: 1rem;
  padding: 0;
  margin:2px 0;
}
.resa ul{
  list-style-type: none;
  display: flex;
  column-gap: 2px;
}
.resa ul li:not(:last-child) {
  background-color: #F4F4E9;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
}
.btn {
  border:none;
  padding:20px 15px;
  background: var(--color-border);
  color:var(--color-bg);
  cursor: pointer;
}
.resa .btn {
  padding:30px 10px;
  border-radius: 5px;
}

.parallax {
  height: 600px;
  background-attachment: fixed;
  background-size: cover;
  background-position: 0 center;
  box-shadow: 0px 1px 5px 28px rgba(0,0,0,0.35);
-webkit-box-shadow: 0px 1px 5px 28px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 1px 5px 28px rgba(0,0,0,0.35);

}

/*////////////////////////////////////////////*/
/*//////////// FORMULAIRES  //////////////////*/
/*////////////////////////////////////////////*/

form input:not(input[type="submit"]),
form select {
  border: none;
  border: 1px dotted;
  box-shadow: none;
  background: none;
  padding:10px;
}
.pax {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 -30px -10px 18px;
  background: transparent url(../img/users.svg) no-repeat center/100%;
}
.inptPax {
  width:190px !important;
  border:none !important;
}
.wrapperNbPax {
  display: inline-block;
  border:1px dotted;
  border-radius: 5px;
  width: 250px;
}
form#resa fieldset {
  margin-bottom: 10px;
  border-radius: 5px;
}

form#resa label {
  position: relative;
  display: inline-block;
  min-width: 18vw;
  max-width: 18vw;
}

form#resa button,
form#resa input,
form#resa select,
form#resa textarea {
  font-family: inherit;
  font-size: 100%;
  width: 250px;
  margin: 0;
  border-radius: 5px;

  -webkit-box-sizing: border-box; /* Pour les anciennes versions des navigateurs WebKit */
  -moz-box-sizing: border-box; /* Pour tous les navigateurs Gecko */
  box-sizing: border-box;
}
form#resa input[type="checkbox"] {
  position: relative;
  width: 20px;
  top: -20px;
}
form#resa exp {
  color:red;
}
form input:focus:not(input[type="submit"]) {
  outline:1px solid green;
}

::-moz-selection {
  color: #fff;
  background-color: #8ebf42;
}
::selection {
  color: #fff;
  background-color: #8ebf42;
}
form#resa fieldset p.cgl label {
  min-width:80%;
}
form#resa fieldset p.cgl input[type="checkbox"] {
  top:0;
  width: 24px;
  height: 24px;
}
.mask {
  display: none;
}
.unmask {
  display: block;
}
.resa form ul li input {
  border:none;
}
.resa form ul li .pax {
  margin: 0 -30px -10px 0;
}
.info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTYgMTYiIGhlaWdodD0iMTYiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWw6c3BhY2U9InByZXNlcnZlIiBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjIiPjxwYXRoIGQ9Ik0xMSAxN2gydi02aC0ydjZabTEtOGEuOTY5Ljk2OSAwIDAgMCAuNzEzLS4yODhBLjk2OC45NjggMCAwIDAgMTMgOGEuOTcyLjk3MiAwIDAgMC0uMjg3LS43MTNBLjk3Mi45NzIgMCAwIDAgMTIgN2EuOTY4Ljk2OCAwIDAgMC0uNzEyLjI4N0EuOTY5Ljk2OSAwIDAgMCAxMSA4YzAgLjI4My4wOTYuNTIxLjI4OC43MTJBLjk2NS45NjUgMCAwIDAgMTIgOVptMCAxM2E5LjcyMyA5LjcyMyAwIDAgMS0zLjktLjc4OCAxMC4wNzcgMTAuMDc3IDAgMCAxLTMuMTc1LTIuMTM3Yy0uOS0uOS0xLjYxMi0xLjk1OC0yLjEzNy0zLjE3NUE5Ljc0IDkuNzQgMCAwIDEgMiAxMmE5Ljc0IDkuNzQgMCAwIDEgLjc4OC0zLjkgMTAuMDkzIDEwLjA5MyAwIDAgMSAyLjEzNy0zLjE3NWMuOS0uOSAxLjk1OC0xLjYxMiAzLjE3NS0yLjEzOEE5Ljc0IDkuNzQgMCAwIDEgMTIgMmE5Ljc0IDkuNzQgMCAwIDEgMy45Ljc4NyAxMC4xMTMgMTAuMTEzIDAgMCAxIDMuMTc1IDIuMTM4Yy45LjkgMS42MTMgMS45NTggMi4xMzggMy4xNzVBOS43NCA5Ljc0IDAgMCAxIDIyIDEyYTkuNzQgOS43NCAwIDAgMS0uNzg3IDMuOSAxMC4wOTYgMTAuMDk2IDAgMCAxLTIuMTM4IDMuMTc1Yy0uOS45LTEuOTU4IDEuNjEzLTMuMTc1IDIuMTM3QTkuNzIzIDkuNzIzIDAgMCAxIDEyIDIyWiIgc3R5bGU9ImZpbGwtcnVsZTpub256ZXJvIiB0cmFuc2Zvcm09Im1hdHJpeCguNyAwIDAgLjcgLS40IC0uNCkiIGZpbGw9IiMwMDAwMDAiLz48L3N2Zz4=);
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 2px;
}
#cartelandes {
  text-align: right;
}
#cartelandes img {
  padding:10px;
  vertical-align: middle;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center img,
.right img,
.left img {
  border-radius: 5px;
  margin:20px;
}
.bloc {
  height: 150px;
}

.price-home {
  position: relative;
  left:16vw;
}
.pricing-wrapper.second .pricing-title {
  background: #fcfcf1;
  color:#A5A5A5;
}
.pricing-wrapper.second .price {
  background: grey;
  color:#A5A5A5;
}

.grid-image:before,
.voile {
  display: inline-block;
  position: absolute;
  top:0;
  left:0;
  z-index: 1;
  width: 100%;
  min-height: 95%;
  height: inherit;
  max-height: 100%;
  /*background-color: red;*/
  /*background-color: rgba(0, 0, 0, 0.5); RIVAGES*/
  /*background-color: rgba(16, 139, 70, 0.2);*/
  /*background-color: rgba(14, 47, 63, 1);*/
  /*background-color: rgba(187, 110, 12, 0.2);*/
  background-color: rgba(71, 71, 71, 0.5);
  /*opacity: 0.7; RIVAGES*/
  opacity: 0.7;
  filter:sepia(0.2) contrast(1.2) brightness(0.98) saturate(144%);
}

.visuels {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /*grid-template-columns: repeat(8, 1fr);*/
  grid-gap: 10px;
  grid-auto-rows: 50vh;
  align-items: start;
  margin-top:-3em;
  cursor: pointer;
}

.first-block {
  margin-top: 3em;
}
.last-block {
  margin-bottom: -9em;
}

.visuels-right {
  grid-template-areas:
    "a a . b b b b ."
    "a a . b b b b .";
}
.visuels-left {
    grid-template-areas:
    "b b b b a a . ."
    "b b b b a a . .";
}

.presentation {
  grid-area: a;
  position: relative;
  z-index: 5;
  justify-self: left;
  align-self: center;
  background-color: white;
  padding: 8px 10px 50px 30px;
  border-radius: 2%;
  margin-top: -100%;
}
.visuels-articles {
  grid-area: b;
}
.visuel-top,
.visuel-right,
.visuel-bottom,
.visuel-left {
  position: absolute;
  padding:5px;
  background: white;
  border-radius: 2%;
}
.visuel-top > img,
.visuel-right > img,
.visuel-bottom > img,
.visuel-left > img{
  display: block;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  top: 5px;
  left: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
}

.visuel-top {
  height: 17.2vw;
  margin-left: 20%;
  margin-top: -5%;
  width: 50%;
  max-width: 30vw;
  z-index: 2;
  transform: rotate(-3deg);
}
.visuel-right {
  height: 15.2vw;
  margin-top: 5%;
  margin-left: 30%;
  width: 50%;
  max-width: 30vw;
  z-index: 4;
  transform: rotate(3deg);
}
.visuel-bottom {
  height: 27.3vw;
  margin-left: 25%;
  margin-top: 15%;
  width: 50%;
  max-width: 30vw;
  z-index: 3;
}
.visuel-left {
  height: 35.2vw;
  margin-left: 10%;
  margin-top: 5%;
  width: 30%;
  max-width: 50vw;
  z-index: 1;
  transform: rotate(5deg);
}
.carte {
  display: inline-block;
  width: 100%;
  min-height: 200px;
  height: 800px;
  max-height: 800px;
  position: relative;
  background-color: #315154;
  color:var(--color-bg);
}
.carte .description {
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  max-width: 50%;
}
.carte .description p {
  max-width: 80%;
  padding: 20px;
  z-index: 1;
}
.carte .description h1{
  padding: 20px;
  max-width: 80%;
  color:var(--color-bg);
  z-index: 1;
}
.carte img {
  display: inline-block;
  height: 100%;
  top: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}
