@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --beige: #F3EAD2;
  --blanc: #FFFFFF;
  --marron: #AC8349;
  --noir: #000000;
  --orange: #D29008;
}

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

html, body {
  position: relative;
  font-size: 1em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  line-height: 1;
}

h2, h3, h4, h5 {
  margin: 0.8em 0 0.5em;
}

h4 {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  color: var(--blanc);
  background-color: var(--orange);
  padding: 0.7em 1.2em;
}

h6 {
  margin: 0.6em 0 0.5em;
}

p {
  font-size: 1.1em;
  line-height: 1.4;
  margin-bottom: 1em;
}
p a {
  display: inline-block;
  position: relative;
}
p a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--noir);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
p a:hover:after {
  width: 0;
}

a {
  text-decoration: none;
  line-height: 1.1;
  color: var(--noir);
}

ul, ol {
  margin: 0 0 1em 16px;
}
ul > li, ol > li {
  font-size: 1.1em;
  line-height: 1.4;
  margin-bottom: 0.4em;
}
ul > li li, ol > li li {
  font-size: inherit;
}

.container {
  max-width: 1430px;
  width: 95%;
  margin: auto;
}

.container_small {
  max-width: 1140px;
  width: 95%;
  margin: auto;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.6rem 1rem;
  border: 2px solid var(--orange);
  background-color: var(--orange);
  color: var(--blanc);
  font-weight: 500;
  text-transform: lowercase;
  border-radius: 100px;
  transition: all 0.3s;
}
.btn:hover {
  border-color: var(--marron);
  background-color: var(--marron);
}

.btnPlus {
  color: var(--orange);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  margin: 0;
}
.btnPlus > span {
  text-decoration: underline;
}
.btnPlus > i {
  font-size: 0.8em;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 1200px) {
  .container, .container_small {
    max-width: 960px;
  }
}
@media screen and (max-width: 990px) {
  .container, .container_small {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .container, .container_small {
    max-width: 540px;
  }
  p, ul > li, ol > li {
    font-size: 1em;
  }
}
@media screen and (max-width: 450px) {
  .btn {
    font-size: 0.9em;
  }
}
/********************* SOMMAIRE *********************/
/* HEADER                              ligne :   10 */
/* MENU ORDINATEUR                     ligne :   20 */
/* MENU MOBILE                         ligne :  128 */
/* MEDIA QUERIES                       ligne :  183 */
/* HEADER */
header {
  background-color: var(--orange);
  margin-top: 3em !important;
  border-radius: 30px;
  padding-bottom: 195px;
}

.home header {
  padding-bottom: 575px;
}

/* MENU ORDINATEUR */
header > .menu {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
header > .menu > a {
  display: block;
  flex: 0 0 280px;
  max-width: 280px;
  background-color: var(--blanc);
  border-radius: 10px;
  padding: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  margin-left: -60px;
}
header > .menu > a > img {
  transition: all 0.3s;
}
header > .menu > a:hover > img {
  opacity: 0.6;
}
header > .menu > .ordi {
  flex: 1;
  margin-top: 1em;
}
header > .menu > .ordi > div {
  text-align: right;
  color: var(--blanc);
  padding: 0 55px 0.8em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header > .menu > .ordi > div > p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
  font-size: 0.85em;
  margin: 0;
}
header > .menu > .ordi > div > p > a {
  color: var(--blanc);
}
header > .menu > .ordi > div > p > a:after {
  background-color: var(--blanc);
}
header > .menu > .ordi > nav {
  margin-top: 2em;
  padding-right: 55px;
}
header > .menu > .ordi > nav > ul {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2em;
}
header > .menu > .ordi > nav > ul > li {
  margin: 0;
  font-size: 1em;
}
header > .menu > .ordi > nav > ul > li > a:not(.contact_btn) {
  display: block;
  text-transform: lowercase;
  color: var(--blanc);
  text-align: right;
  font-weight: 600;
  padding: 5px 2em 5px 0;
  border-right: 1px solid var(--blanc);
  transition: all 0.3s;
}
header > .menu > .ordi > nav > ul > li > a:not(.contact_btn):hover {
  opacity: 0.6;
}
header > .menu > .ordi > nav > ul > li > a:not(.contact_btn) > span {
  display: block;
  font-weight: 900;
}
header > .menu > .ordi > nav > ul > li:nth-last-child(2) > a:not(.contact_btn) {
  padding-right: 0;
  border-right: none;
}
header > .menu > .ordi > nav > ul > li > .contact_btn {
  text-transform: lowercase;
  color: var(--blanc);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.6em 1.2em;
  border: 2px solid var(--blanc);
  border-radius: 100px;
  transition: all 0.3s;
}
header > .menu > .ordi > nav > ul > li > .contact_btn:hover {
  background-color: var(--blanc);
  color: var(--orange);
}

/* MENU MOBILE */
header .mobile {
  display: none;
  align-items: center;
  gap: 0.8em;
  cursor: pointer;
}
header .mobile > p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2em;
  margin: 3px 0 0;
  color: var(--blanc);
  transition: all 0.3s;
}
header .mobile .barre {
  width: 35px;
  height: 4px;
  margin-bottom: 5px;
  border-radius: 15px;
  background-color: var(--blanc);
  transition: all 0.3s;
}
header .mobile .barre:last-child {
  margin-bottom: 0;
}
header .mobile:hover .barre01, header .mobile:hover .barre02 {
  margin-bottom: 10px;
}

/* RETOUR HAUT */
.to_top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px 0 0 5px;
  background-color: var(--orange);
  color: var(--blanc);
  font-size: 1.4em;
  cursor: pointer;
  position: fixed;
  bottom: 80px;
  right: -80px;
  z-index: 99;
  transition: all 0.3s;
}
.to_top:hover {
  opacity: 0.7;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  header > .menu > a {
    margin-left: -30px;
  }
}
@media screen and (max-width: 1440px) {
  header > .menu > a {
    flex: 0 0 250px;
    max-width: 250px;
  }
  header > .menu > .ordi > nav {
    margin-top: 1em;
  }
  header > .menu > .ordi > nav > ul {
    gap: 1em;
  }
  header > .menu > .ordi > nav > ul > li > a:not(.contact_btn) {
    padding-right: 1em;
  }
}
@media screen and (max-width: 1200px) {
  header {
    border-radius: 20px;
  }
  header > .menu > a {
    flex: 0 0 200px;
    max-width: 200px;
    margin-left: -20px;
  }
  header > .menu > .ordi > div {
    padding-right: 25px;
  }
  header > .menu > .ordi > div > p {
    font-size: 0.75em;
    gap: 0.5em;
  }
  header > .menu > .ordi > nav {
    padding-right: 25px;
  }
  header > .menu > .ordi > nav > ul > li > a {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 990px) {
  header {
    padding-top: 1em;
  }
  header > .menu {
    align-items: center;
    padding-right: 2em;
  }
  header > .menu > .ordi {
    display: none;
    flex-direction: column;
    background-color: var(--blanc);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: calc(720px - 5%);
    padding: 2em;
    margin: 0;
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  header > .menu > .ordi > div {
    order: 2;
    color: var(--noir);
    padding: 0;
    margin-top: 2em;
    text-align: center;
  }
  header > .menu > .ordi > div > p {
    flex-wrap: wrap;
    justify-content: center;
  }
  header > .menu > .ordi > div > p > a {
    color: var(--noir);
  }
  header > .menu > .ordi > div > p > a:after {
    background-color: var(--noir);
  }
  header > .menu > .ordi > nav {
    order: 1;
    margin: 0;
    padding: 0;
  }
  header > .menu > .ordi > nav > ul {
    display: block;
  }
  header > .menu > .ordi > nav > ul > li {
    margin-bottom: 1em;
  }
  header > .menu > .ordi > nav > ul > li > a {
    font-size: 1em;
  }
  header > .menu > .ordi > nav > ul > li > a:not(.contact_btn) {
    color: var(--noir);
    text-align: left;
    padding: 0;
  }
  header > .menu > .ordi > nav > ul > li > a:not(.contact_btn) > span {
    display: inline;
  }
  header > .menu > .ordi > nav > ul > li > a.contact_btn {
    color: var(--noir);
    border-color: var(--noir);
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
  }
  header > .menu > .ordi > nav > ul > li > a.contact_btn:hover {
    background-color: var(--noir);
    color: var(--blanc);
  }
  header .mobile {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  header > .menu > .ordi {
    max-width: calc(540px - 5%);
  }
  .home header {
    padding-bottom: 505px;
  }
}
@media screen and (max-width: 576px) {
  header > .menu {
    padding-right: 1em;
  }
  header > .menu > a {
    margin-left: 1em;
  }
  header > .menu > .ordi {
    padding: 2em 1em;
  }
  .home header {
    padding-bottom: 415px;
  }
}
@media screen and (max-width: 450px) {
  header {
    margin-top: 1em !important;
  }
  header > .menu > .ordi {
    top: 115px;
  }
}
/********************* SOMMAIRE *********************/
/* QUESTION                            ligne :   10 */
/* FOOTER                              ligne :   51 */
/* FOOTER LÉGAL                        ligne :  175 */
/* MEDIA QUERIES                       ligne :  189 */
/* QUESTION */
.question {
  max-width: 750px;
  width: 95%;
  margin: 0 auto 8em;
  position: relative;
}
.question:after {
  content: "";
  width: 100vw;
  height: 600px;
  background-color: var(--blanc);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.question > div {
  text-align: center;
}
.question > div > h3 {
  font-weight: 600;
  margin: 0 0 0.8em;
}
.question > div > h3 > strong {
  display: block;
}
.question > .btn {
  margin: 3em auto 0;
  text-transform: uppercase;
}

.single-randos .question:after, .tax-type_tag .question:after {
  height: 550px;
  top: calc(50% + 50px);
}

/* FOOTER */
.footer {
  background-color: var(--orange);
  border-radius: 30px;
  display: flex;
  align-items: stretch;
  padding: 3em 2em;
}
.footer > div {
  flex: 1;
}
.footer > div > h3 {
  margin: 0 0 0.8em;
  color: var(--blanc);
  font-size: 2em;
  text-transform: lowercase;
  font-weight: 700;
}
.footer > div:not(:last-child):not(:first-child) {
  border-right: 1px solid var(--blanc);
  padding-right: 1.5em;
}
.footer > div:not(:first-child) {
  padding-left: 1.5em;
}
.footer > div.contactF {
  flex: 0 0 300px;
  max-width: 300px;
}
.footer > div.contactF > figure > a {
  display: block;
  background-color: var(--blanc);
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 1em;
  transition: all 0.3s;
}
.footer > div.contactF > figure > a:hover > img {
  opacity: 0.6;
}
.footer > div.contactF > figure > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer > div.contactF > p.adresse {
  color: var(--blanc);
  font-size: 0.9em;
  line-height: 25px;
}
.footer > div.contactF > p:not(.adresse) {
  color: var(--blanc);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1em;
}
.footer > div.contactF > p:not(.adresse):last-child {
  margin-bottom: 0;
}
.footer > div.contactF > p:not(.adresse) > a {
  color: var(--blanc);
  font-weight: 700;
}
.footer > div.contactF > p:not(.adresse) > a:after {
  width: 0;
  background-color: var(--blanc);
}
.footer > div.contactF > p:not(.adresse) > a:hover:after {
  width: 100%;
}
.footer > div.contactF > p:not(.adresse):last-child > a {
  font-size: 1.4em;
  transition: all 0.3s;
}
.footer > div.contactF > p:not(.adresse):last-child > a:after {
  display: none;
}
.footer > div.contactF > p:not(.adresse):last-child > a:hover {
  opacity: 0.6;
}
.footer > div.menuF > ul {
  margin: 0;
  list-style: none;
}
.footer > div.menuF > ul > li {
  margin: 0;
  font-size: 1em;
}
.footer > div.menuF > ul > li > a {
  display: block;
  text-transform: lowercase;
  font-weight: 600;
  margin-bottom: 1em;
  color: var(--blanc);
  font-size: 1.1em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
}
.footer > div.menuF > ul > li > a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--blanc);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.footer > div.menuF > ul > li > a:hover:after {
  width: 100%;
}

/* FOOTER LÉGAL */
.legal {
  text-align: center;
  margin: 1.5em;
  text-transform: lowercase;
  font-weight: 500;
}
.legal > p {
  margin: 0;
  font-size: 0.9em;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .footer {
    flex-wrap: wrap;
  }
  .footer > div.contactF {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid var(--blanc);
    padding-bottom: 1.5em;
  }
  .footer > div.contactF > figure > a {
    margin: 0 auto 1em;
  }
  .footer > div.contactF > p.adresse {
    text-align: center;
  }
  .footer > div.contactF > p:not(.adresse) {
    justify-content: center;
  }
  .footer > div.menuF {
    flex: 0 0 25%;
    max-width: 25%;
    padding-top: 1.5em;
  }
  .footer > div.menuF:first-of-type {
    padding-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 2em 2em 2em 1em;
    border-radius: 20px;
  }
  .footer > div:not(:first-child) {
    padding-left: 1em;
  }
  .footer > div:not(:last-child):not(:first-child) {
    padding-right: 1em;
  }
  .footer > div > h3 {
    font-size: 1.8em;
  }
  .footer > div.menuF > ul > li > a {
    font-size: 1em;
  }
}
@media screen and (max-width: 990px) {
  .footer > div.menuF {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer > div:not(:last-child):not(:first-child):nth-child(3) {
    padding-right: 0;
    border-right: none;
  }
  .footer > div:nth-child(2), .footer > div:nth-child(3) {
    border-bottom: 1px solid var(--blanc);
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding-left: 1em;
  }
  .footer > div.contactF {
    padding-left: 1em;
  }
  .footer > div.contactF > figure > a {
    margin: 0 0 1em;
  }
  .footer > div.contactF > p.adresse {
    text-align: left;
  }
  .footer > div.contactF > p:not(.adresse) {
    justify-content: flex-start;
  }
  .footer > div.menuF {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1em 0 1em 1em !important;
  }
  .footer > div:nth-child(2):not(:last-child):not(:first-child) {
    border-right: none;
  }
  .footer > div:last-child {
    padding-bottom: 0 !important;
  }
  .footer > div:nth-child(4):not(:last-child):not(:first-child) {
    border-right: none;
    border-bottom: 1px solid var(--blanc);
  }
}
/********************* SOMMAIRE *********************/
/* PAGE PAR DÉFAUT                     ligne :   12 */
/* ARTICLE PAR DÉFAUT                  ligne :   56 */
/* SINGLE RANDONNÉE                    ligne :  119 */
/* PAGE D'ACCUEIL                      ligne :  161 */
/* FIL D'ARIANE                        ligne :  230 */
/* MEDIA QUERIES                       ligne :  267 */
/* PAGE PAR DÉFAUT */
.entete {
  border-radius: 30px;
  overflow: auto;
  width: 90%;
  max-width: 1320px;
  margin: -165px auto 4em;
  position: relative;
  z-index: 1;
}
.entete > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.entete > div {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 10em 2em 2em 5em;
  position: relative;
}
.entete > div > h1 {
  color: var(--blanc);
  text-transform: lowercase;
}
.entete > div > h2 {
  color: var(--blanc);
  text-transform: lowercase;
  font-family: "King";
  font-weight: 400;
  margin: 0;
  font-size: 1.6em;
}

/* ARTICLE PAR DÉFAUT */
.enteteA {
  width: 90%;
  max-width: 1320px;
  margin: -165px auto 4em;
  position: relative;
}
.enteteA > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.enteteA > div:not(.container_small) {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: rgba(75, 56, 16, 0.7);
  padding: 2em;
  position: relative;
}
.enteteA > div:not(.container_small) > .cat {
  margin: 0 auto 1em;
  font-size: 0.9em;
  padding: 0.4rem 1.5em;
}
.enteteA > div:not(.container_small) > .cat.btn:hover {
  background-color: var(--orange);
  border-color: var(--orange);
}
.enteteA > div:not(.container_small) > h1 {
  color: var(--blanc);
  font-size: 2.6em;
  text-align: center;
  margin: auto;
  max-width: 600px;
}
.enteteA > div:not(.container_small) > .date {
  text-transform: lowercase;
  color: var(--blanc);
  text-align: center;
  margin: 1em 0 0;
  font-size: 1em;
}
.enteteA > .container_small {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

/* SINGLE RANDONNÉE */
.enteteR {
  width: 90%;
  max-width: 1320px;
  margin: -165px auto 4em;
  position: relative;
}
.enteteR > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.enteteR > div {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: rgba(75, 56, 16, 0.7);
  padding: 4em 2em;
  position: relative;
}
.enteteR > div > h1 {
  color: var(--blanc);
  font-size: 2.6em;
  text-align: center;
}
.enteteR > div > h1 > span {
  display: block;
  font-size: 0.7em;
  line-height: 1.4;
}
.enteteR > div .ariane > span {
  justify-content: center;
}

/* PAGE D'ACCUEIL */
.enteteF {
  border-radius: 30px;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1320px;
  margin: -545px auto 7em;
  position: relative;
}
.enteteF > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.enteteF > div {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
  text-align: center;
  padding: 7em 1em 4em;
  position: relative;
}
.enteteF > div > img {
  width: 165px;
}
.enteteF > div > h1 {
  text-transform: lowercase;
  color: var(--blanc);
  font-size: 5em;
}
.enteteF > div > h2 {
  font-family: "King";
  text-transform: lowercase;
  margin: 0;
  font-weight: 400;
  color: #EFB257;
}
.enteteF > div > p {
  margin: 1.5em 0;
  text-transform: uppercase;
  color: var(--blanc);
  font-size: 1.4em;
}
.enteteF > div > div {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: auto;
  border: 2px solid var(--blanc);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-size: 1.4em;
  padding: 1.2em 0.2em;
}

/* FIL D'ARIANE */
.ariane {
  margin-top: 2em;
}
.ariane > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  color: var(--blanc);
  text-transform: lowercase;
  font-weight: 700;
}
.ariane > span a {
  color: var(--blanc);
  font-weight: 700;
  position: relative;
}
.ariane > span a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--blanc);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.ariane > span a:hover:after {
  width: 0;
}
.ariane > span .breadcrumb_last {
  font-weight: 700;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .enteteF, .entete, .enteteA, .enteteR {
    max-width: 1030px;
  }
}
@media screen and (max-width: 1200px) {
  .enteteF {
    border-radius: 20px;
    max-width: 850px;
  }
  .entete {
    border-radius: 20px;
    max-width: 850px;
  }
  .entete > div {
    padding: 6em 2em 2em;
    border-radius: 20px;
  }
  .enteteA {
    border-radius: 20px;
    max-width: 850px;
  }
  .enteteA > div:not(.container_small) > h1 {
    font-size: 2.2em;
  }
  .enteteR {
    border-radius: 20px;
    max-width: 850px;
  }
  .enteteR > div > h1 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 990px) {
  .enteteF {
    max-width: 610px;
  }
  .enteteF > div > img {
    width: 125px;
  }
  .enteteF > div > h1 {
    font-size: 4em;
  }
  .entete {
    max-width: 610px;
  }
  .entete > div > h2 {
    font-size: 1.4em;
  }
  .enteteA {
    max-width: 610px;
  }
  .enteteA > div:not(.container_small) {
    padding: 3em 2em;
  }
  .enteteR {
    max-width: 610px;
  }
  .enteteR > div {
    padding: 3em 2em;
  }
}
@media screen and (max-width: 768px) {
  .enteteF {
    margin-top: -485px;
    max-width: calc(540px - 5%);
  }
  .enteteF > div > h1 {
    font-size: 3em;
  }
  .enteteF > div > p {
    margin: 1.2em 0;
    font-size: 1.2em;
  }
  .entete {
    max-width: calc(540px - 5%);
  }
  .entete > div {
    padding: 4em 1em 2em;
  }
  .entete > div > h2 {
    font-size: 1.2em;
  }
  .enteteA, .enteteR {
    max-width: calc(540px - 5%);
  }
  .ariane > span {
    gap: 5px 8px;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 576px) {
  .enteteF {
    margin: -395px auto 4em;
  }
  .enteteF > div {
    padding: 5em 1em 3em;
  }
  .enteteF > div > img {
    width: 100px;
  }
  .enteteF > div > h1 {
    font-size: 2.5em;
  }
  .entete > div {
    padding: 6em 1em 3em;
  }
  .enteteA > .container_small {
    display: none;
  }
  .enteteA > .container_small > h1 {
    font-size: 2em;
  }
  .ariane {
    display: none;
  }
  .enteteR > div {
    padding: 2em 1em;
  }
  .enteteR > div > h1 {
    font-size: 2em;
  }
}
/********************* SOMMAIRE *********************/
/* CONTENU                             ligne :    9 */
/* ALLER PLUS LOIN                     ligne :   47 */
/* MEDIA QUERIES                       ligne :  167 */
/* CONTENU */
.content_page > .content {
  background-color: var(--blanc);
  border-radius: 40px;
  padding: 3em 5em;
  margin-bottom: 5em;
}
.content_page > .content > *:first-child {
  margin-top: 0;
}

.wp-block-quote {
  max-width: 800px;
  position: relative;
}
.wp-block-quote:before {
  content: "";
  width: 95px;
  height: 100%;
  background-color: var(--beige);
  position: absolute;
  top: 0;
  left: 0;
}
.wp-block-quote > * {
  position: relative;
}

.wp-block-image.alignfull.size-large {
  margin: 2em auto;
}

.wp-block-button__link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: lowercase;
  transition: all 0.3s;
}
.wp-block-button__link:hover {
  opacity: 0.6;
}

.content_page.container_small + .faq {
  margin-top: -2em;
}

/* ALLER PLUS LOIN */
.plusLoin {
  background-color: var(--beige);
  padding: 6em 0;
  margin-bottom: 6em;
}
.plusLoin > div > p:first-child {
  font-family: "King";
  color: var(--orange);
  margin: 0;
  text-transform: lowercase;
  font-size: 1.8em;
  text-align: center;
}
.plusLoin > div > h2 {
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1em;
  padding-bottom: 20px;
  position: relative;
}
.plusLoin > div > h2:after {
  content: "";
  width: 110px;
  height: 10px;
  background-color: var(--orange);
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.plusLoin > div > .description {
  max-width: 680px;
  text-align: center;
  margin: 0 auto 3em;
}
.plusLoin > div > .description > p:last-child {
  margin-bottom: 0;
}

.remontee_soeurs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1em;
}
.remontee_soeurs > a {
  display: block;
  flex: 0 0 calc(33.33% - 0.67em);
  max-width: calc(33.33% - 0.67em);
  border-radius: 30px;
  background-color: var(--blanc);
  box-shadow: 0 2px 5px -2px #594927;
  padding: 1em 1em 2em;
}
.remontee_soeurs > a .image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
}
.remontee_soeurs > a .image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.remontee_soeurs > a h3 {
  margin: 1.5em 0 0;
  text-align: center;
  color: var(--noir);
  font-size: 1.5em;
}
.remontee_soeurs > a:hover > div > img {
  transform: scale(1.2);
}

.remontee_articles > a .infos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1em 0;
}
.remontee_articles > a .infos > .cat {
  font-size: 0.9em;
  padding: 0.4rem 1.5em;
  margin: 0;
}
.remontee_articles > a .infos > .cat.btn:hover {
  background-color: var(--orange);
  border-color: var(--orange);
}
.remontee_articles > a .infos > .date {
  text-transform: lowercase;
  color: var(--orange);
  font-size: 0.9em;
  margin: 0;
}
.remontee_articles > a h3 {
  margin: 0;
  text-align: left;
  color: var(--orange);
}
.remontee_articles > a > div:last-of-type {
  margin: 1em 0;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
  .content_page > .content {
    border-radius: 20px;
    padding: 2em 3em;
  }
  .remontee_soeurs > a {
    border-radius: 20px;
  }
}
@media screen and (max-width: 990px) {
  .plusLoin > div > p:first-child {
    font-size: 1.5em;
  }
  .remontee_soeurs {
    justify-content: center;
  }
  .remontee_soeurs > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
}
@media screen and (max-width: 768px) {
  .content_page > .content {
    padding: 2em 1em;
  }
  .remontee_soeurs > a > h3 {
    margin: 1.2em 0 0;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 576px) {
  .plusLoin {
    padding: 3em 0;
  }
  .plusLoin > div > p:first-child {
    font-size: 1.4em;
  }
  .remontee_soeurs > a {
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 10px;
  }
  .remontee_soeurs > a > .image {
    border-radius: 10px;
  }
}
/********************* SOMMAIRE *********************/
/* ENTETE SECTION                      ligne :   16 */
/* RANDONNÉE NATURE                    ligne :   60 */
/* SÉJOURS RANDONNÉE                   ligne :  116 */
/* OÙ PARTIR                           ligne :  177 */
/* ITINÉRAIRES EMBLÉMATIQUES           ligne :  248 */
/* POURQUOI CHOISIR - UNE ÉQUIPE       ligne :  370 */
/* FAQ                                 ligne :  424 */
/* AVIS CLIENTS                        ligne :  465 */
/* PARTENAIRES                         ligne :  485 */
/* MEDIA QUERIES                       ligne :  519 */
/* ENTETE SECTION */
.titre_sstitre {
  width: 95%;
  margin: auto;
}
.titre_sstitre > p {
  margin: 0;
  font-family: "King";
  text-transform: lowercase;
  text-align: center;
  color: var(--orange);
  font-size: 1.8em;
}
.titre_sstitre > h2 {
  margin: 0 0 0.8em;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 18px;
  position: relative;
}
.titre_sstitre > h2:after {
  content: "";
  width: 100px;
  height: 10px;
  background-color: var(--orange);
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.titre_sstitre > div:first-of-type {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.titre_sstitre > div:first-of-type > p:last-child {
  margin: 0;
}

/* RANDONNÉE NATURE */
.nature {
  display: flex;
  align-items: center;
  margin-bottom: 5em;
}
.nature > div:first-child {
  background-color: #FFFBEF;
  border-radius: 30px;
  padding: 2.5em 2em 1.5em 0;
  margin-right: -3em;
  position: relative;
}
.nature > div:first-child > h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 2em;
}
.nature > div:first-child > h3 {
  margin: 0.3em 0 0.8em;
  font-size: 1.8em;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 18px;
  position: relative;
}
.nature > div:first-child > h3:after {
  content: "";
  width: 100px;
  height: 10px;
  background-color: var(--orange);
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.nature > div:last-child {
  flex: 0 0 400px;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 30px;
  overflow: hidden;
}
.nature > div:last-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* SÉJOURS RANDONNÉE */
.rando {
  background-color: var(--blanc);
  padding: 5em 0 6em;
}
.rando > .container {
  margin-top: 2em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.rando > .container > a {
  display: flex;
  align-items: stretch;
  gap: 1.5em;
  flex: 0 0 calc(50% - 0.5em);
  max-width: calc(50% - 0.5em);
  border-radius: 30px;
  background-color: var(--beige);
}
.rando > .container > a > div:first-child {
  flex: 0 0 265px;
  max-width: 265px;
  aspect-ratio: 2/3;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.rando > .container > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.rando > .container > a > div:last-child {
  margin: 3em 2em 3em 0;
}
.rando > .container > a > div:last-child > h4 {
  background-color: unset;
  padding: 0;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}
.rando > .container > a > div:last-child > div {
  margin: 0.6em 0 1.5em;
}
.rando > .container > a > div:last-child > div > p:last-child {
  margin: 0;
}
.rando > .container > a:hover > div:first-child > img {
  transform: scale(1.2);
}

/* OÙ PARTIR */
.partir {
  margin: 5em 0 9em;
}
.partir > .pages {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 2em;
}
.partir > .pages > a {
  display: block;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
}
.partir > .pages > a > div:first-child {
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
}
.partir > .pages > a > div:first-child:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 48%, var(--noir) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.partir > .pages > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.partir > .pages > a > div:last-child {
  padding: 0 3.5em 2em 1.5em;
  position: absolute;
  bottom: 0;
  left: 0;
}
.partir > .pages > a > div:last-child > h4 {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  background-color: unset;
}
.partir > .pages > a > div:last-child > div {
  color: var(--blanc);
  margin: 0.5em 0 1.2em;
  font-size: 0.9em;
}
.partir > .pages > a > div:last-child > div > p {
  line-height: 1.5;
}
.partir > .pages > a > div:last-child > div > p:last-child {
  margin: 0;
}
.partir > .pages > a:hover > div > img {
  transform: scale(1.2);
}

/* ITINÉRAIRES EMBLÉMATIQUES */
.itineraires {
  margin-bottom: 6em;
}
.itineraires > div:first-child {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 4em;
}
.itineraires > div:first-child > .titre_sstitre > p, .itineraires > div:first-child > .titre_sstitre > h2 {
  text-align: left;
}
.itineraires > div:first-child > .titre_sstitre > div {
  text-align: left;
  margin: 0;
}
.itineraires > div:first-child > .titre_sstitre > h2:after {
  left: 0;
  transform: translateX(0);
}
.itineraires > div:first-child > .titre_sstitre > .btn {
  margin-top: 1em;
}
.itineraires > div:first-child > div:not(.titre_sstitre) {
  display: flex;
  align-items: stretch;
  gap: 1em;
  height: 360px;
}
.itineraires > div:first-child > div:not(.titre_sstitre) > div {
  border-radius: 30px;
  overflow: hidden;
}
.itineraires > div:first-child > div:not(.titre_sstitre) > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.itineraires > div:first-child > div:not(.titre_sstitre) > div:first-child {
  flex: 0 0 260px;
  max-width: 260px;
}
.itineraires > div:first-child > div:not(.titre_sstitre) > div:last-child {
  flex: 0 0 480px;
  max-width: 480px;
}

.iti_pages {
  display: flex;
  align-items: stretch;
  gap: 2em 1em;
  flex-wrap: wrap;
}
.iti_pages > a {
  display: block;
  flex: 0 0 calc(25% - 0.9em);
  max-width: calc(25% - 0.9em);
}
.iti_pages > a > div:first-child {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 100%;
  overflow: hidden;
}
.iti_pages > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.iti_pages > a > div:last-child {
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgba(153, 103, 0, 0.2);
  background-color: #FFFEFB;
  padding: 8em 1.2em 1.5em;
  margin-top: -90px;
  height: calc(100% - 140px + 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.iti_pages > a > div:last-child > h4 {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  color: var(--orange);
  background-color: unset;
  text-align: center;
  width: 100%;
}
.iti_pages > a > div:last-child > div {
  text-align: center;
  margin: 1.2em 0 1.6em;
  font-size: 0.9em;
}
.iti_pages > a > div:last-child > div > p {
  line-height: 1.5;
}
.iti_pages > a > div:last-child > div > p:last-child {
  margin: 0;
}
.iti_pages > a > div:last-child > .btnPlus {
  justify-content: center;
}
.iti_pages > a:hover > div:first-child > img {
  transform: scale(1.2);
}

/* POURQUOI CHOISIR - UNE ÉQUIPE */
.img_txt {
  margin-bottom: 3em;
}
.img_txt > div {
  display: flex;
  align-items: center;
  gap: 3em;
  width: 95%;
  max-width: 950px;
  margin: auto;
}
.img_txt > div > .img {
  flex: 0 0 380px;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
}
.img_txt > div > .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img_txt > div > .description {
  flex: 1;
}
.img_txt > div > .description > h2 {
  font-weight: 600;
  color: var(--marron);
  margin-top: 0;
}
.img_txt > div > .description > h2 > strong {
  display: block;
  font-weight: 900;
}
.img_txt > div > .description > p {
  line-height: 1.5;
}
.img_txt > div > .description > p:last-child {
  margin: 0;
}

.choix {
  background-color: var(--beige);
  padding: 3em 0;
}

/* FAQ */
.faq {
  width: 95%;
  max-width: 950px;
  margin: 4em auto 5em;
}
.faq > div {
  border-radius: 20px;
  background-color: var(--blanc);
  box-shadow: 0 5px 10px 0 rgba(153, 103, 0, 0.2);
  padding: 1.5em 2em;
  margin-bottom: 1.8em;
  cursor: pointer;
}
.faq > div > h5 {
  color: #747474;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  margin: 0;
}
.faq > div > h5 > i {
  font-size: 1.4em;
  transition: all 0.3s;
}
.faq > div > div {
  display: none;
  margin-top: 1em;
}
.faq > div > div > p:last-child {
  margin: 0;
}
.faq > div.open > h5 > i {
  transform: rotate(180deg);
}

/* AVIS CLIENTS */
.avis {
  background-color: var(--beige);
  border-radius: 30px;
  padding: 4em 3em;
  margin-bottom: 3em;
}
.avis > h3 {
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: var(--marron);
}
.avis > div {
  margin-top: 3em;
}

/* PARTENAIRES */
.partenaires {
  background-color: var(--beige);
  border-radius: 30px;
  padding: 4em 3em;
  margin-bottom: 7em;
}
.partenaires > h3 {
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: var(--marron);
}
.partenaires > div {
  margin-top: 3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.partenaires > div > * {
  height: 80px;
}
.partenaires > div > * > img {
  width: auto;
  max-width: unset;
  height: 100%;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .partir > .pages > a > div:last-child {
    padding: 0 1em 2em;
  }
}
@media screen and (max-width: 1440px) {
  .rando > .container > a {
    gap: 1em;
  }
  .rando > .container > a > div:first-child {
    flex: 0 0 215px;
    max-width: 215px;
  }
  .rando > .container > a > div:last-child {
    margin: 3em 1em 3em 0;
  }
  .partir > .pages {
    justify-content: center;
  }
  .partir > .pages > a {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .partir > .pages > a:nth-last-child(2), .partir > .pages > a:last-child {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .partir > .pages > a > div:last-child {
    padding: 0 2em 2em 2em;
  }
  .itineraires > div:first-child > div:not(.titre_sstitre) {
    height: 320px;
  }
  .itineraires > div:first-child > div:not(.titre_sstitre) > div:first-child {
    flex: 0 0 220px;
    max-width: 220px;
  }
  .itineraires > div:first-child > div:not(.titre_sstitre) > div:last-child {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .iti_pages > a > div:last-child {
    padding: 8em 1em 1.5em;
  }
}
@media screen and (max-width: 1200px) {
  .rando > .container {
    justify-content: center;
  }
  .rando > .container > a {
    flex: 0 0 70%;
    max-width: 70%;
    border-radius: 20px;
  }
  .rando > .container > a > div:first-child {
    border-radius: 20px;
  }
  .titre_sstitre > p {
    font-size: 1.4em;
  }
  .itineraires > div:first-child {
    flex-wrap: wrap;
  }
  .itineraires > div:first-child .titre_sstitre {
    width: 100%;
  }
  .itineraires > div:first-child > div:last-child {
    margin: 0 0 0 auto;
  }
  .iti_pages > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .img_txt > div > .img, .avis {
    border-radius: 20px;
  }
  .partenaires {
    border-radius: 20px;
  }
  .partenaires > div {
    gap: 0.5em;
  }
  .partenaires > div > * {
    height: 66px;
  }
}
@media screen and (max-width: 990px) {
  .nature {
    flex-wrap: wrap;
    gap: 2em;
  }
  .nature > div:first-child {
    padding: 0;
    margin-right: 0;
  }
  .nature > div:last-child {
    margin: auto;
  }
  .rando > .container > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .partir > .pages > a {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .partir > .pages > a:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .partir > .pages > a:last-child > div:first-child {
    aspect-ratio: 16/9;
  }
  .partir > .pages > a > div:first-child {
    aspect-ratio: 3/4;
  }
  .img_txt > div {
    gap: 2em;
  }
  .img_txt > div > .img {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .avis {
    padding: 3em 2em;
  }
  .partenaires {
    padding: 3em 2em;
  }
  .partenaires > div {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .nature > div:first-child > h2 {
    font-size: 1.8em;
  }
  .nature > div:first-child > h3 {
    font-size: 1.4em;
  }
  .partir {
    margin-bottom: 5em;
  }
  .partir > .pages > a > div:last-child {
    padding: 0 1em 2em 1em;
  }
  .partir > .pages > a:last-child > div:last-child {
    padding-right: 2em;
  }
  .itineraires > div:first-child > div:last-child {
    height: auto;
  }
  .itineraires > div:first-child > div:last-child > div:first-child {
    flex: 0 0 200px;
    max-width: 200px;
    aspect-ratio: 3/4;
  }
  .itineraires > div:first-child > div:last-child > div:last-child {
    flex: auto;
    max-width: 100%;
  }
  .img_txt > div {
    flex-wrap: wrap;
  }
  .img_txt > div > .img {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
    aspect-ratio: 16/9;
  }
  .img_txt > div > .description {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .avis {
    padding: 3em 2em 1em;
  }
  .avis > div {
    margin-top: 2em;
  }
}
@media screen and (max-width: 576px) {
  .choix {
    padding: 1em 0 2em;
  }
  .titre_sstitre > p {
    font-size: 1.2em;
  }
  .titre_sstitre > h2:after {
    width: 60px;
    height: 6px;
  }
  .rando > .container {
    gap: 2em;
  }
  .rando > .container > a {
    flex-wrap: wrap;
    border-radius: 10px;
  }
  .rando > .container > a > div:first-child {
    order: 2;
    flex: 0 0 100%;
    max-width: 100%;
    aspect-ratio: 3/2;
    border-radius: 10px;
  }
  .rando > .container > a > div:last-child {
    order: 1;
    margin: 2em 1em 0;
  }
  .partir > .pages > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .partir > .pages > a:nth-last-child(2) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .partir > .pages > a:last-child > div:first-child {
    aspect-ratio: 4/3;
  }
  .partir > .pages > a > div:first-child {
    aspect-ratio: 4/3;
  }
  .partir > .pages > a > div:first-child:after {
    background: linear-gradient(180deg, transparent 30%, var(--noir) 100%);
  }
  .iti_pages > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .img_txt > div > .img, .partenaires {
    border-radius: 10px;
  }
  .faq > div {
    border-radius: 10px;
    padding: 1.5em 1em;
    margin-bottom: 1em;
  }
  .faq > div > h5 > i {
    display: none;
  }
  .avis {
    border-radius: 10px;
    padding: 2em 1em 1em;
  }
  .partenaires {
    padding: 2em 1em;
  }
  .partenaires > div > * {
    height: 60px;
  }
}
@media screen and (max-width: 450px) {
  .nature > div:first-child > h2 {
    font-size: 1.5em;
  }
  .nature > div:first-child > h3 {
    font-size: 1.2em;
  }
  .nature > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .titre_sstitre > p {
    font-size: 1.1em;
  }
  .itineraires > div:first-child > div:last-child {
    flex-wrap: wrap;
  }
  .itineraires > div:first-child > div:last-child > div:first-child {
    margin: auto;
  }
  .itineraires > div:first-child > div:last-child > div:last-child {
    aspect-ratio: 4/3;
  }
}
.content_contact .content {
  background-color: var(--blanc);
  border-radius: 40px;
  padding: 4em 8em;
  margin-bottom: 2em;
}
.content_contact .contactC {
  margin-bottom: 5em;
}
.content_contact .contactC > div:first-child {
  display: flex;
  align-items: center;
  gap: 3em;
  background-color: var(--blanc);
  border-radius: 40px;
  padding: 2em 8em;
  margin-bottom: 2em;
}
.content_contact .contactC > div:first-child > div:first-child {
  flex: 0 0 400px;
  max-width: 400px;
}
.content_contact .contactC > div:first-child > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_contact .contactC > div:first-child > div:last-child {
  flex: 1;
}
.content_contact .contactC > div:first-child > div:last-child > h3 {
  margin-top: 0;
}
.content_contact .contactC > div:first-child > div:last-child > p:first-of-type {
  line-height: 1.6;
}
.content_contact .contactC > div:first-child > div:last-child > p:last-child {
  margin: 0;
}
.content_contact .contactC > div:first-child > div:last-child > p:not(:first-of-type) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.content_contact .contactC > div:last-of-type {
  background-color: var(--blanc);
  border-radius: 40px;
  padding: 2em 1em;
  margin-bottom: 2em;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui {
  max-width: 750px;
  margin: auto;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-col {
  padding: 0;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row-last {
  margin-bottom: 0 !important;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  border-radius: 30px;
  border: 2px solid var(--orange);
  padding: 1em 1.5em;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field label {
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: lowercase;
  font-weight: 500 !important;
  font-size: 1.1em !important;
  color: var(--orange);
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field input, .content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field textarea {
  border: none;
  padding: 0;
  flex: 1;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field .forminator-error-message {
  flex: 0 0 100%;
  max-width: 100%;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-field-textarea label {
  align-self: baseline;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-checkbox-box {
  border-color: var(--orange);
  color: var(--orange);
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .btn {
  margin: auto;
  text-transform: uppercase;
  border-radius: 30px;
  font-weight: 900 !important;
  font-size: 1.1em !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8em 1.8em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .btn:after {
  content: "\f1d8";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}
.content_contact .contactC > iframe {
  width: 100%;
  aspect-ratio: 18/9;
  border: none;
  border-radius: 40px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
  .content_contact .content {
    border-radius: 20px;
    padding: 3em 4em;
  }
  .content_contact .contactC > div:first-child {
    border-radius: 20px;
    padding: 2em 4em;
  }
  .content_contact .contactC > div:first-child > div:first-child {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .content_contact .contactC > div:last-of-type, .content_contact .contactC > iframe {
    border-radius: 20px;
  }
}
@media screen and (max-width: 990px) {
  .content_contact .contactC > div:first-child {
    gap: 1em;
  }
  .content_contact .contactC > div:first-child > div:first-child {
    flex: 0 0 250px;
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .content_contact .content {
    padding: 2em;
  }
  .content_contact .contactC > div:first-child {
    flex-wrap: wrap;
    justify-content: center;
  }
  .content_contact .contactC > div:first-child > div:first-child {
    order: 2;
    flex: 0 0 300px;
    max-width: 300px;
  }
  .content_contact .contactC > div:first-child > div:last-child {
    order: 1;
  }
  .content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field {
    padding: 0.6em 1em;
    border-radius: 20px;
  }
  .content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field label {
    font-size: 1em !important;
  }
  .content_contact .contactC > div:last-of-type > form.forminator-ui .btn {
    font-size: 1em !important;
  }
}
@media screen and (max-width: 576px) {
  .content_contact .contactC > div:first-child {
    padding: 2em;
  }
  .content_contact .contactC > iframe {
    aspect-ratio: 14/9;
  }
}
@media screen and (max-width: 450px) {
  .content_contact .contactC > div:last-of-type > form.forminator-ui .btn {
    font-size: 0.9em !important;
  }
}
.filtresArticles {
  background-color: var(--blanc);
  padding: 5em 1em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em 2em;
  flex-wrap: wrap;
  margin: -7em 0 1.5em;
  position: relative;
}
.filtresArticles > .btn {
  font-size: 0.9em;
  font-weight: 700;
  padding: 0.4rem 1.5em;
}

.content_blog {
  margin-bottom: 11em;
  padding-bottom: 6em;
  position: relative;
}
.content_blog:not(.finArticles):after {
  content: "";
  width: 120%;
  height: 480px;
  background: linear-gradient(0deg, #FFFBEF 22%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.content_blog > .btn {
  margin: -2em auto 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.9em;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.content_blog > .btn > i {
  border: 3px solid var(--blanc);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  width: 30px;
  height: 30px;
}

.remontee_blog {
  gap: 3em 2em;
}
.remontee_blog > a {
  background-color: var(--beige);
  flex: 0 0 calc(33.33% - 1.34em);
  max-width: calc(33.33% - 1.34em);
}
.remontee_blog > a.articleUne {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 2em;
}
.remontee_blog > a.articleUne .image {
  flex: 0 0 680px;
  max-width: 680px;
  aspect-ratio: 5/3;
}
.remontee_blog > a.articleUne .une {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1.2em;
}
.remontee_blog > a.articleUne .une > i {
  font-size: 1.5em;
}
.remontee_blog > a.articleUne > div:not(.image) > div:last-of-type {
  margin: 1em 0;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
  .remontee_blog {
    gap: 2em 1em;
  }
  .remontee_blog > a {
    flex: 0 0 calc(33.33% - 0.67em);
    max-width: calc(33.33% - 0.67em);
  }
  .remontee_blog > a.articleUne .image {
    flex: 0 0 500px;
    max-width: 500px;
  }
}
@media screen and (max-width: 990px) {
  .remontee_blog > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .remontee_blog > a.articleUne {
    padding: 1em;
  }
  .remontee_blog > a.articleUne .image {
    flex: 0 0 350px;
    max-width: 350px;
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 768px) {
  .filtresArticles {
    gap: 1em;
  }
  .remontee_blog > a {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .remontee_blog > a.articleUne {
    display: block;
  }
  .remontee_blog > a.articleUne .image {
    aspect-ratio: 16/9;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .remontee_blog > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .remontee_blog > a.articleUne .une {
    font-size: 1.2em;
  }
}
/********************* SOMMAIRE *********************/
/* SINGLE RANDONNÉE                    ligne :    9 */
/* ARCHIVE RANDNNÉES                   ligne :  345 */
/* MEDIA QUERIES                       ligne :  691 */
/* SINGLE RANDONNÉE  */
.content_rando {
  display: flex;
  align-items: flex-start;
  gap: 3em;
}

.colR {
  flex: 0 0 calc(100% - 500px - 3em);
  max-width: calc(100% - 500px - 3em);
}
.colR #slide {
  margin-bottom: 2em;
  position: relative;
}
.colR #slide .slick-slide div {
  width: 100%;
  aspect-ratio: 5/3;
  border-radius: 30px;
  overflow: hidden;
}
.colR #slide .slick-slide div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.colR #slide .paginator {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.colR #slide .paginator > div {
  width: 40px;
  aspect-ratio: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: var(--blanc);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  cursor: pointer;
  transition: all 0.3s;
}
.colR #slide .paginator > div:first-child:hover {
  margin-left: -10px;
}
.colR #slide .paginator > div:last-child:hover {
  margin-right: -10px;
}
.colR > div:first-child > .btn {
  margin-top: 3em;
}
.colR > div:not(:last-child) {
  border-bottom: 1px solid #D8CEAC;
  padding-bottom: 1.5em;
  margin-bottom: 2em;
}
.colR > div > h5 {
  font-weight: 700;
}
.colR > div > h5:not(:first-of-type) {
  margin-top: 1.5em;
}
.colR > div > h3 + h5 {
  margin-top: 1.5em;
}
.colR > div.acces > h5 {
  display: flex;
  align-items: center;
  gap: 6px;
}
.colR > div.acces > h5 > i {
  font-size: 1.2em;
}
.colR > div.acces > .btn {
  margin-top: 2em;
}
.colR > div > p {
  margin-bottom: 0.5em;
}
.colR .infos {
  background-color: var(--blanc);
  border-radius: 15px;
  padding: 1.5em 1.8em;
  margin: 1.5em 0 1.2em;
}
.colR .infos > p:last-child {
  margin-bottom: 0;
}
.colR .infos > p > span {
  font-weight: 700;
  color: var(--orange);
}
.colR .infos > p.niveau {
  display: flex;
  align-items: center;
  gap: 10px;
}
.colR .infos > p.niveau > span:last-child {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 1.2em;
  color: var(--noir);
}
.colR .etapes {
  margin-top: 2em;
}
.colR .etapes > div {
  border-radius: 15px;
  background-color: #F2ECDA;
  padding: 1em 1.5em;
  margin-bottom: 1.8em;
  cursor: pointer;
}
.colR .etapes > div > h5 {
  color: #595959;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 500;
  margin: 0;
}
.colR .etapes > div > h5 > i {
  font-size: 1.4em;
  transition: all 0.3s;
}
.colR .etapes > div > div {
  display: none;
  margin-top: 1em;
}
.colR .etapes > div > div > p {
  margin-bottom: 0.6em;
  font-size: 1em;
}
.colR .etapes > div.open > h5 > i {
  transform: rotate(180deg);
}
.colR .acf-etapes-map {
  aspect-ratio: 15/6;
}

.colD {
  flex: 0 0 500px;
  max-width: 500px;
}
.colD > div {
  background-color: var(--blanc);
  border-radius: 30px;
  box-shadow: 0 5px 10px 0 rgba(153, 103, 0, 0.2);
  padding: 1.8em 2em;
}
.colD > div:not(:last-child) {
  margin-bottom: 2em;
}
.colD > div > .btn:first-child {
  font-size: 0.9em;
  text-transform: initial;
  font-weight: 700;
  padding: 0.5em 2em;
}
.colD > div > h3 {
  font-size: 1.6em;
  margin-bottom: 0.8em;
}
.colD > div > h3 > span {
  display: block;
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1.4;
}
.colD > div > h4 {
  background-color: unset;
  padding: 0;
  width: auto;
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 0.8em;
}
.colD > div:first-child > div:first-of-type > p {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #BFBFBF;
  padding-top: 1em;
}
.colD > div:first-child > div:first-of-type > p:first-child {
  border-color: var(--orange);
}
.colD > div:first-child > div:first-of-type > p > i {
  font-size: 1.4em;
}
.colD > div:not(:first-child):not(:last-child) > div > p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95em;
}
.colD > div:not(:first-child) > div > p:last-child {
  margin-bottom: 0;
}
.colD > div > .type {
  background-color: #F2F2F2;
  border-radius: 20px;
  padding: 1.5em 1.2em;
  margin-top: 2em;
}
.colD > div > .type > p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #B37900;
  font-weight: 600;
}
.colD > div > .type > p:last-child {
  margin-bottom: 0;
}
.colD > div > .type > p > i {
  font-size: 1.6em;
}
.colD > div > .type > p span {
  display: block;
}
.colD > div > .type > p > span > span {
  text-transform: lowercase;
}
.colD > div > .btns {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 2em;
}
.colD > div > .btns > .btn:first-child {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.3em;
  padding: 0.6rem 1.5rem;
}
.colD > div > .btns > .btn:last-child {
  background-color: var(--blanc);
  color: var(--orange);
}
.colD > div > .btns > .btn:last-child:hover {
  background-color: #F2F2F2;
}

.btn.liberte {
  background-color: #C95C18;
  border-color: #C95C18;
}

.btn.accompagne {
  background-color: #93160B;
  border-color: #93160B;
}

.btn.ane {
  background-color: #67655A;
  border-color: #67655A;
}

.btn.trail {
  background-color: #608426;
  border-color: #608426;
}

.resa {
  background-color: var(--blanc);
  padding: 2em 1em;
  margin: 3em 0;
}
.resa > h2 {
  text-align: center;
  text-transform: uppercase;
  color: #01AEC6;
}
.resa #webresaBookingWidgetIframe {
  display: block;
  border: none;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.infosPlus {
  width: 95%;
  max-width: 950px;
  margin: 3em auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5em;
  padding-bottom: 4em;
  border-bottom: 1px solid #A9A9A9;
}
.infosPlus > h2 {
  flex: 1;
  color: var(--marron);
  font-weight: 600;
}
.infosPlus > h2 > span {
  display: block;
  text-transform: lowercase;
  font-weight: 900;
}
.infosPlus > .iti_pages {
  display: block;
  flex: 0 0 345px;
  max-width: 345px;
}
.infosPlus > .iti_pages > a {
  max-width: unset;
}

.single-randos .faq {
  margin-bottom: 3.5em;
  padding-bottom: 4em;
  border-bottom: 1px solid #A9A9A9;
}
.single-randos .faq > h2 {
  color: var(--marron);
  font-weight: 600;
  margin-bottom: 1.2em;
}
.single-randos .faq > h2 > span {
  display: block;
  text-transform: lowercase;
  font-weight: 900;
}

/* ARCHIVE RANDNNÉES */
.decouvrir {
  margin-bottom: 13em;
}
.decouvrir > .remontee_randos {
  margin-top: 3em;
}

.remontee_randos {
  gap: 1.5em;
}
.remontee_randos > a {
  background-color: var(--beige);
  flex: 0 0 calc(33.33% - 1em);
  max-width: calc(33.33% - 1em);
  position: relative;
}
.remontee_randos > a > .btn {
  font-size: 0.9em;
  text-transform: initial;
  font-weight: 700;
  padding: 0.5em 2em;
  margin: -18px auto 0;
  position: relative;
}
.remontee_randos > a > h3 {
  font-size: 1.1em;
  color: var(--orange);
  margin: 0.8em 0 0.4em;
}
.remontee_randos > a > h3 > span {
  display: block;
  font-weight: 700;
}
.remontee_randos > a > .niveau {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1.2em;
  color: var(--orange);
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--orange);
}
.remontee_randos > a > div:not(.image) > p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 0.6em;
}
.remontee_randos > a > div:not(.image) > p:last-child {
  margin-bottom: 0;
}
.remontee_randos > a > i {
  font-size: 2.2em;
  color: var(--orange);
  position: absolute;
  right: 16px;
  bottom: 20px;
}

.introArchive {
  width: 90%;
  max-width: 1320px;
  margin: calc(-4em - 140px) auto 0;
  display: flex;
  align-items: flex-end;
  gap: 2em;
}
.introArchive > div:first-child {
  flex: 0 0 200px;
  max-width: 200px;
  aspect-ratio: 9/16;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.introArchive > div:first-child:after {
  content: "";
  background: linear-gradient(0, rgba(210, 144, 8, 0.7) 0%, rgba(210, 144, 8, 0.7) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.introArchive > div:first-child > img:first-child {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.introArchive > div:first-child > img:last-child {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.introArchive > div:last-child {
  flex: 0 0 800px;
  max-width: calc(100% - 200px - 2em);
  margin-bottom: 2em;
}
.introArchive > div:last-child > h3 {
  margin-top: 0;
  text-transform: uppercase;
}
.introArchive > div:last-child > p:last-child {
  margin-bottom: 0;
}

.ficheRandos {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 3em;
  padding-bottom: 4em;
  border-bottom: 1px solid #C3C3C3;
}
.ficheRandos > div:first-child {
  flex: 0 0 250px;
  max-width: 250px;
  border-radius: 30px;
  background: var(--blanc);
  box-shadow: 0 5px 10px 0 rgba(153, 103, 0, 0.2);
  padding: 1.2em;
}
.ficheRandos > div:first-child > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ficheRandos > div:first-child > div:first-child > h5 {
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
}
.ficheRandos > div:first-child > div:first-child > i {
  display: none;
  color: var(--orange);
  font-size: 1.2em;
}
.ficheRandos > div:first-child > div:first-child > .suppFiltres {
  text-transform: lowercase;
  color: #8E8E8E;
  font-weight: 700;
  font-size: 0.8em;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
}
.ficheRandos > div:first-child > div:first-child > .suppFiltres:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #8E8E8E;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.ficheRandos > div:first-child > div:first-child > .suppFiltres:hover:before {
  width: 0;
}
.ficheRandos > div:first-child > div:last-child {
  padding-top: 14px;
  margin-top: 12px;
  border-top: 1px solid #DADADA;
}
.ficheRandos > div:first-child > div:last-child > div {
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #DADADA;
}
.ficheRandos > div:first-child > div:last-child > div > p {
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0;
}
.ficheRandos > div:first-child > div:last-child > div > div {
  margin-top: 0.6em;
}
.ficheRandos > div:first-child > div:last-child > div > div > .choixFiltre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5em;
}
.ficheRandos > div:first-child > div:last-child > div > div > .choixFiltre > p {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1em;
}
.ficheRandos > div:first-child > div:last-child > div > div > .choixFiltre > span {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background-color: #EEEEEE;
  border: 2px solid #8E8E8E;
  cursor: pointer;
  transition: all 0.3s;
}
.ficheRandos > div:first-child > div:last-child > div > div > .choixFiltre.active > span {
  background-color: #8E8E8E;
  position: relative;
}
.ficheRandos > div:first-child > div:last-child > div > div > .choixFiltre.active > span:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--blanc);
  font-size: 0.8em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ficheRandos > div:first-child > div:last-child > .btn {
  font-size: 0.9em;
  font-weight: 700;
  margin-bottom: 0;
  cursor: pointer;
}
.ficheRandos > div:first-child > div:last-child > .btn > i {
  font-size: 1.3em;
}
.ficheRandos > .remontee_randos {
  flex: 0 0 calc(100% - 250px - 2em);
  max-width: calc(100% - 250px - 2em);
  position: relative;
}
.ficheRandos > .remontee_randos:not(.finRando):after {
  content: "";
  width: 102%;
  height: 480px;
  background: linear-gradient(0deg, #FFFBEF 22%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ficheRandos > .remontee_randos > .btnPlusDiv {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: -2em;
}
.ficheRandos > .remontee_randos > .btnPlusDiv > .btn {
  margin: auto;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.9em;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.ficheRandos > .remontee_randos > .btnPlusDiv > .btn > i {
  border: 3px solid var(--blanc);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  width: 30px;
  height: 30px;
}

.itinerairesT > .iti_pages {
  margin-top: 4em;
}

.blog_randos {
  background-color: var(--blanc);
  margin-top: 7em;
  padding: 5em 0 6em;
}
.blog_randos .remontee_articles {
  margin-top: 3em;
}

.conclusion {
  background-color: var(--beige);
  padding: 5em 0 6em;
}
.conclusion > div {
  width: 95%;
  max-width: 950px;
  margin: auto;
}
.conclusion > div .alignleft {
  float: left;
}
.conclusion > div img {
  border-radius: 30px;
  width: 375px;
  aspect-ratio: 5/6;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 2.5em 0.6em 0;
}
.conclusion > div h2, .conclusion > div h3, .conclusion > div h4, .conclusion > div h5, .conclusion > div h6 {
  color: var(--marron);
}

.tax-type_tag .faq {
  margin: 5em auto 12em;
}
.tax-type_tag .faq > h2 {
  color: var(--marron);
  font-weight: 600;
  margin-bottom: 1.2em;
}
.tax-type_tag .faq > h2 > span {
  display: block;
  text-transform: lowercase;
  font-weight: 900;
}

#listeArticlesRandos.load {
  opacity: 0.5;
  pointer-events: none;
}

#validerFiltresRandos.is-loading, #voirSuiteRandos.is-loading {
  pointer-events: none;
}

.aucunResultat, .erreurFiltresRandos {
  margin: 1em 0 0;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .content_rando {
    gap: 2em;
  }
  .colR {
    flex: 0 0 calc(100% - 400px - 2em);
    max-width: calc(100% - 400px - 2em);
  }
  .colR #slide .slick-slide div {
    border-radius: 20px;
  }
  .colR .infos {
    padding: 1.2em 1em;
  }
  .colD {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .colD > div {
    border-radius: 20px;
    padding: 1.5em 1em;
  }
  .colD > div > .type {
    border-radius: 15px;
    padding: 1.5em 1em;
  }
  .colD > div > .btns > .btn:first-child {
    font-size: 1.1em;
  }
  .introArchive {
    max-width: 1030px;
  }
  #listeArticlesRandos.remontee_randos > a {
    flex: 0 0 calc(50% - 0.75em);
    max-width: calc(50% - 0.75em);
  }
}
@media screen and (max-width: 1200px) {
  .content_rando {
    gap: 1em;
  }
  .colR {
    flex: 0 0 calc(100% - 350px - 1em);
    max-width: calc(100% - 350px - 1em);
  }
  .colD {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .colD > div > h3 {
    font-size: 1.4em;
  }
  .colD > div > .btns {
    flex-wrap: wrap;
  }
  .colD > div > .btns > .btn:last-child {
    margin: 0 0 0 auto;
  }
  .colD > div:first-child > div:first-of-type > p > i, .colD > div > .type > p > i {
    font-size: 1.2em;
  }
  .remontee_randos {
    gap: 1em;
  }
  .remontee_randos > a {
    flex: 0 0 calc(33.33% - 0.67em);
    max-width: calc(33.33% - 0.67em);
  }
  .introArchive {
    max-width: 850px;
    margin-top: -140px;
  }
  .introArchive > div:first-child {
    flex: 0 0 150px;
    max-width: 150px;
    border-radius: 20px;
  }
  .introArchive > div:last-child {
    max-width: calc(100% - 150px - 2em);
  }
  #listeArticlesRandos.remontee_randos > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
}
@media screen and (max-width: 990px) {
  .content_rando {
    flex-wrap: wrap;
  }
  .colR {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .colD {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .infosPlus {
    gap: 1em;
    flex-wrap: wrap;
  }
  .infosPlus > h2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .infosPlus > .iti_pages {
    margin: auto;
  }
  .remontee_randos > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .introArchive {
    max-width: 610px;
    margin-top: -2em;
    align-items: stretch;
    gap: 1em;
  }
  .introArchive > div:first-child {
    flex: 0 0 100px;
    max-width: 100px;
    aspect-ratio: unset;
  }
  .introArchive > div:first-child > img:last-child {
    bottom: 50%;
    transform: translate(-50%, 50%) scale(0.7);
  }
  .introArchive > div:last-child {
    max-width: calc(100% - 100px - 1em);
    margin-bottom: 0;
  }
  .ficheRandos > div:first-child {
    margin: auto;
    border-radius: 20px;
  }
  .ficheRandos > div:first-child > div:first-child {
    cursor: pointer;
  }
  .ficheRandos > div:first-child > div:first-child > i {
    display: block;
    transition: all 0.3s;
  }
  .ficheRandos > div:first-child > div:first-child > p {
    display: none;
  }
  .ficheRandos > div:first-child > div:last-child {
    display: none;
  }
  .ficheRandos > div:first-child.open {
    position: relative;
  }
  .ficheRandos > div:first-child.open > div:first-child > i {
    transform: rotate(180deg);
  }
  .ficheRandos > div:first-child.open > div:first-child > p {
    display: block;
    position: absolute;
    top: 38px;
    right: 20px;
  }
  .ficheRandos > div:first-child.open > div:last-child {
    display: block;
    margin-top: 22px;
  }
  .ficheRandos > .remontee_randos {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .conclusion {
    padding: 3em 0 4em;
  }
  .conclusion > div img {
    border-radius: 20px;
    width: 275px;
    margin: 0 1.5em 0 0;
  }
}
@media screen and (max-width: 768px) {
  .remontee_randos > a, #listeArticlesRandos.remontee_randos > a {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .conclusion > div img {
    width: 200px;
  }
}
@media screen and (max-width: 576px) {
  .content_rando {
    word-break: break-word;
  }
  .colR .acf-etapes-map {
    aspect-ratio: 10/6;
  }
  .colR #slide .paginator > div {
    width: 30px;
    font-size: 1.2em;
  }
  .colR .etapes > div {
    border-radius: 10px;
    padding: 0.8em 1em;
  }
  .colR .etapes > div > h5 > i {
    display: none;
  }
  .colR .infos > p > span {
    font-size: 0.9em;
  }
  .remontee_randos > a, #listeArticlesRandos.remontee_randos > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .conclusion {
    padding-bottom: 2em;
  }
  .conclusion > div .alignleft {
    display: block;
    float: unset;
    margin: auto;
  }
}
@media screen and (max-width: 450px) {
  .colD > div {
    border-radius: 10px;
    padding: 1.2em 0.6em;
  }
  .colD > div > h3 {
    font-size: 1.2em;
  }
  .colR #slide .slick-slide div {
    border-radius: 10px;
    aspect-ratio: 4/3;
  }
  .infosPlus > .iti_pages {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .introArchive > div:first-child {
    display: none;
  }
  .introArchive > div:last-child {
    max-width: 100%;
  }
  .blog_randos {
    margin-top: 5em;
  }
}/*# sourceMappingURL=main.css.map */