/*
Theme Name: Che&Vous
Description: Thème sur mesure pour le site che-et-vous.fr
Version: 2025
Author: Raf
*/

/* RESET CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  overflow-x: hidden;
  font-size: 2rem;
  color: var(--noir);
}

ol,
ul {
  line-height: 3rem;
  margin-bottom: 1rem;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

sub {
  font-size: 100%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

b,
strong {
  font-weight: 700;
}

.upper {
  text-transform: uppercase;
}

/* END RESET CSS */

html {
  font-size: 62.5%;
  --noir: #1D1D1B;
  --blanc: #FFF;
  --prim: #93BC38;
  --sec: #97D2D6;
  --ter: #007034;
  font-family: "Quicksand", serif;
  font-weight: 500;
}

img {
  max-width: 100%;
}

/* TYPOS */


h1,
.h1-like {
  font-family: "Bebas Neue", serif;
  font-size: 8rem;
  line-height: 8rem;
  text-transform: uppercase;
}


h2,
.h2-like {
  font-family: "Bebas Neue", serif;
  font-size: 4.4rem;
  line-height: 4.8rem;
  text-transform: uppercase;
}

h3,
.h3-like {
  font-family: "Quicksand", serif;
  font-size: 3.8rem;
  line-height: 4.2rem;
  text-transform: uppercase;
}

h4,
.h4-like {
  font-family: "Bebas Neue", serif;
  font-size: 4.4rem;
  line-height: 5.4rem;
}

h5,
.h5-like {
  font-family: "Quicksand", serif;
  font-weight: 700;
  font-size: 2rem;
}

h6,
.h6-like {
  font-family: "Quicksand", serif;
  font-weight: 700;
  font-size: 1.6rem;
}

.single h1+p,
.single h2+p,
.single h3+p,
.single h4+p,
.single h5+p,
.single h6+p {
  margin-top: 1.2rem;
}

p {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 1.2rem;
}

p:last-of-type {
  margin-bottom: 0;
}

.page-template-default p {
  margin-bottom: 2.4rem;
}

p em,
p i {
  font-style: italic;
}

.cite {
  font-size: 2.4rem;
  line-height: 4rem;
}

.blanc {
  color: var(--blanc);
}

.noir {
  color: var(--noir);
}

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

p a {
  transition: 0.16s;
  text-decoration: underline;
}

p a:hover {
  color: var(--noir);
}


/* Pictos */

.socials {
  display: flex;
  justify-content: space-between;
  width: 6.4rem;
  margin-top: 0.6rem;
  position: absolute;
  right: 2rem;
}

.picto {
  fill: var(--noir);
  width: 2.4rem;
  height: 2.4rem;
  transition: .16s;
}

.picto.large {
  height: 6.4rem;
  width: 6.4rem;
}

.picto.line {
  fill: none;
  stroke: #1d1d1b;
  stroke-linecap: round;
  stroke-linejoin: round;
  height: 6.4rem;
  width: 6.4rem;
}

.picto.line .cls-3 {
  fill: #1d1d1b;
}

.plein {
  fill: var(--noir);
  stroke-width: 0;
  transition: .16s;
}

.picto.cw {
  transform: rotateZ(3deg);
}

.picto.ccw {
  transform: rotateZ(-5deg);
}

.socials a:hover .picto {
  stroke: var(--prim);
}

.socials a:hover .plein {
  fill: var(--prim);
}


/* LOADER */
#loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999;
  transform-origin: 50% 50%;
  background-color: var(--blue);
  transition: .1s;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.loader {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: solid 1px var(--blanc);
  display: block;
  margin: 15px auto;
  position: relative;
  color: #FFF;
  box-sizing: border-box;
  animation: animloader 3s linear infinite;
  transform-origin: center center;
}

@keyframes animloader {
  0% {
    opacity: 0;
    transform: translate(6px, 0);
    width: 0px;
    height: 0px;
  }

  25% {
    transform: translate(-6px, -12px);
  }

  50% {
    transform: translate(6px, -24px);
  }

  75% {
    opacity: .61;
    transform: translate(-6px, -40px);
    width: 12px;
    height: 12px;
  }

  100% {
    opacity: 0;
    transform: translate(6px, -54px);
  }
}


/* HEADER */

.page-template-front-page header {
  width: 100%;
  top: 0;
  display: flex;
  justify-content: center;

}

.hackHeaderNav {
  height: 8rem;
}

#navigation {
  height: 4rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--noir) !important;
  z-index: 9999;
  transition: .3s;
  box-sizing: border-box;
  position: fixed;
  top: 0;
}

.home #navigation ul li a {
  color: var(--blanc) !important;
}

#navigation.fixed {
  position: fixed;
  top: 0;
  height: 4rem;
  background-color: var(--noir);
  color: var(--blanc) !important;
}

#logohead {
  left: 2%;
  width: 4.8rem;
  position: absolute;
}

#logohead svg {
  fill: var(--blanc);
  stroke-width: 0px;
}

#navigation ul {
  margin: 0 0 0 2rem;
  display: flex;
  justify-content: start;
  gap: 10%;
}

#navigation ul li {
  display: inline-flex;
  list-style-type: none;
  font-family: "Quicksand", serif;
  font-weight: 500;
  font-size: 2rem;
  flex: 0 0 auto;
  transition: .3s;
}

#navigation ul li a {
  text-decoration: none;
  position: relative;
  color: var(--noir);
}

#navigation.fixed ul li a {
  color: var(--blanc) !important;
}

#navigation ul li a:hover {
  text-shadow: rgba(255, 255, 255, 0.25) 0 0 8px;
  color: var(--orange);
}

.lienSupNav {
  position: absolute;
  right: 2%;
  z-index: 9999;
  background-color: var(--blanc);
  padding: 0.5rem 1rem;
  border-radius: .8rem;
}

.lienSupNav svg {
  width: 14px;
  height: 18px;
  fill: var(--noir);
  margin-right: 0.5rem;
  transform: translateY(3px);
}

.lienSupNav a {
  font-family: "Bebas Neue", serif;
  color: var(--noir) !important;
}

.lienSupNav a:hover {
  color: var(--ter) !important;
}

.lienSupNav a:hover svg {
  fill: var(--ter) !important;
}

.lang-item-fr,
.lang-item-en {
  position: fixed;
  right: 2.5rem;
  top: 0.5rem;
  box-sizing: border-box;
  font-weight: 400 !important;
}

.hamburger {
  display: none !important;
}

@media (max-width: 880px) {
  header {
    height: 14rem;
    position: fixed;
    z-index: 999;
  }

  /* Nav */
  .hamburger {
    display: inline-block !important;
    position: fixed;
    right: 2%;
    padding: 0;
  }

  .hamburger .hamburger-box {
    width: 24px;
    height: 24px;
    display: inline-block;
  }

  .hamburger .hamburger-inner,
  .hamburger .hamburger-inner::before,
  .hamburger .hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--blanc);
  }

  .hamburger .hamburger-inner::before {
    top: -9px;
  }

  .hamburger .hamburger-inner::after {
    bottom: -9px;
  }

  #navigation {
    justify-content: right;
    max-width: 100%;
  }

  .page-template-front-page #navigation {
    position: fixed;
    top: 0;

    height: 4rem;
  }

  #navigation ul {
    margin: 0 auto;
    width: 100%;
    position: fixed;
    top: 4rem;
    left: -200vw;
    transition: .15s;
    display: block;
    background: var(--noir);
  }

  #navigation ul li {
    text-align: center;
    display: block;
    margin: 0 !important;
    padding: 2rem 0;
    background: var(--noir);
  }

  #navigation ul li a {
    color: var(--blanc);
    text-decoration: none;
  }

  .home #navigation {
    background: transparent;
  }

  #navigation.active,
  .home #navigation.active,
  #navigation,
  #navigation.fixed {
    background: var(--noir);
  }

  #navigation ul.active {
    left: 0;
    z-index: 999;

  }

  .lienSupNav,
  .lang-item-fr,
  .lang-item-en {
    z-index: 9999;
    left: 2rem;
    right: unset;
  }

  .lang-item-fr::after {
    content: '';
  }

  .lang-item-fr,
  .lang-item-en {
    left: 1.5rem;
    top: -1.5rem;
    width: fit-content;
  }

  .socials {
    right: unset;
    left: 2rem;
  }

}


/* SUBNAVIGATION */

.subnav {
  height: 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.subnav ul li {
  display: inline-block;
  list-style-type: none;
  padding: 0 2rem;
  font-size: 1.8rem;
  line-height: 4rem;
  font-family: "Stratos", serif;
  font-weight: 300;
  margin-bottom: -1.4rem;
}

.subnav ul li a {
  text-decoration: none;
  color: var(--blanc);
}

.subnav ul li:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  height: 16px;
  width: 1px;
  margin-left: 2rem;
  position: absolute;
  top: 1.3rem;
}

.nav-pagination {
  display: flex;
  width: 100%;
  justify-content: center;
}

.nav-pagination .page-numbers {
  margin: 0 1.6rem;
}

/* MISE EN PAGE */

section {
  margin: 0 auto;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.nomarge,
.nomargeIn>p {
  margin: 0 !important;
}

.margetopS {
  margin-top: 3rem !important;
}

.margetop {
  margin-top: 6.4rem !important;
}

.margetopL {
  margin-top: 12.8rem !important;
}

.margebotS {
  margin-bottom: 3rem !important;
}

.margebot {
  margin-bottom: 6.4rem !important;
}

.padtop {
  padding-top: 6.4rem !important;
}

.padbot {
  padding-bottom: 6.4rem !important;
}

.padtopS {
  padding-top: 3.2rem !important;
}

.padbotS {
  padding-bottom: 3.2rem !important;
}

.lightgrey {
  background-color: var(--gris);
}

.container {
  position: relative;
  width: 179.6rem;
  max-width: 94%;
  margin: 0 auto;
}

.container.slim {
  width: 136.4rem;
}

.container.Xslim {
  width: 108rem;
}

.ref {
  position: relative;
}

.row {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
}

.row.baseline {
  align-items: baseline;
}

.row.stretch {
  align-items: stretch;
}

.row.top {
  align-items: flex-start;
}

.row.start {
  justify-content: flex-start;
}

.row.around {
  justify-content: space-around;
}

.row.infini {
  flex-flow: row wrap;
  justify-content: strat;
}

.row.cent {
  justify-content: center !important;
}

.row.end {
  justify-content: flex-end !important;
}

.row.infini {
  gap: 4%;
}

.row.full {
  gap: 2%;
}

.col6 {
  flex: 0 0 48%;
}

.col1 {
  flex: 0 0 6%;
}

.col3 {
  flex: 0 0 22%;
}

.col3-like {
  max-width: 42rem;
}

.col4 {
  flex: 0 0 30.666%;
}

.col4-like {
  max-width: 57rem;
}

.col5,
.fake5 {
  flex: 0 0 39%;
}

.row.full .col6.fullImg {
  flex: 0 0 50%;
}

.col7 {
  flex: 0 0 57%;
}

.col8 {
  flex: 0 0 65.333%;
}

.subrow .col6 {
  flex: 0 0 47%;
}

.col1 img,
.col3 img,
.col4 img,
.col5 img,
.col6 img,
.col8 img {
  position: relative;
  max-width: 100%;
  width: 100%;
  z-index: 2;
}

.ordre {
  order: 2;
}

/* Theme */

.hero {
  width: 100vw;
  height: 100svh;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF !important;
  overflow: hidden;
}

.hero img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 0;
  position: absolute;
  object-fit: cover;
  z-index: 1;
}

.hero::before,
.hero::after {
  content: "";
  width: 100%;
  height: 20%;
  left: 0;
  display: block;
  position: absolute;
}

.hero::before {
  top: 0;
  background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
  z-index: 2;
}

.hero::after {
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .75));
  z-index: 2;
}

.hero .intro {
  margin: 5rem auto;
}

.hero .logo {
  width: 52rem;
  max-width: 80%;
  fill: var(--blanc);
  display: block;
  margin: 0 auto;
}

.col3 .logo {
  max-width: 22rem;
  display: block;
}

.logo .cls-1 {
  opacity: .75;
}

.logo .cls-2 {
  fill: #fff;
  opacity: .85;
}

.logo .cls-3 {
  fill: #92bc37;
}

.logo .cls-4 {
  fill: #1d1d1b;
}

.hero div {
  z-index: 2;
}


#arrow {
  position: absolute;
  z-index: 9;
  bottom: 2rem;
}

#arrow svg {
  fill: none;
  stroke: var(--blanc);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7px;
  width: 3.6rem;
  height: 3.6rem;
}

.aere {
  max-width: 66rem;
  margin: 0 auto;
}

.aire {
  max-width: 57rem;
  margin: 0 auto;
}

.bold {
  font-weight: 700;
}

.lienCap {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}

.lienCap a {
  color: var(--blanc);
  text-decoration: none;
}

/* MENU */

#menu h2 {
  background-color: var(--prim);
  color: var(--blanc);
  text-align: center;
  font-size: 8rem;
  padding: 2.4rem 2rem 1.4rem;
  line-height: 6rem !important;
}

#menu h3 {
  margin-bottom: 0;
}

#menu p {
  margin: 0 !important;
  line-height: 2rem;
}

.prix {
  background-color: var(--prim);
  color: var(--blanc);
  text-align: center;
  font-size: 3rem;
  padding: 1.4rem 2rem 1.3rem;
  line-height: 4rem;
  font-family: "Bebas Neue", sans-serif;
}

#menu .menu h2,
.menu .prix {
  background-color: var(--sec);
}

#menu p.mention {
  font-size: 1.8rem;
  margin-top: 6rem !important;
}

#actu a {
  color: var(--noir) !important;
}

/* Contacts */



/* Medias */

.video {
  width: 100%;
  height: fit-content;
  aspect-ratio: 16/9;
}

.video iframe,
.video video {
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.f1-1 {
  position: relative;
  aspect-ratio: 1/1;
}

.fvignette {
  aspect-ratio: 0.691;
}

.f4-3 {
  aspect-ratio: 4/3;
}

.f3-4 {
  aspect-ratio: 3/4;
}

.f16-9 {
  aspect-ratio: 16/9;
}

.f1-6 {
  aspect-ratio: 1.6;
}

.wp-block-image {
  margin: 2.4rem 0;
}

figcaption {
  z-index: 2 !important;
  background: none !important;
}

p.credits {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(-- blanc) !important;
  padding: 0.4rem .8rem;
  box-sizing: border-box;
  z-index: 5;
  opacity: 0;
  transition: .3s;
  font-size: 1.4rem !important;
  line-height: 1.8rem !important;
  margin: 0;
}

div:hover>.credits,
section:hover>.credits {
  opacity: 1;
}

.blog .col4 {
  margin-bottom: 4rem;
}

#blog h3 {
  margin-top: 1.2rem;
}

.blogImg {
  display: block;
  position: relative;
}

.catego {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blanc);
  padding: 0.4rem 1rem;
  box-sizing: border-box;
  z-index: 5;
}


/* PAGINATION ARCHIVE */

.navigation {
  text-align: center;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
  display: inline-flex;
  text-decoration: none;
}

.navigation li {
  display: inline;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
  cursor: pointer;
  padding: 12px;
  padding: 0.75rem;
}

.navigation li a:hover {
  color: #bbb;
}

.navigation li.active a {
  font-family: 'Stratos', sans-serif;
  font-weight: 500;
}

/* Logos */

a.logos {
  display: block;
  min-height: 10rem;
  margin-bottom: 1.6rem;
}

img.logos {
  max-height: 10rem;
  border-radius: 0 !important;
  filter: grayscale(1);
  transition: .3s;
}

a:hover img.logos {
  filter: grayscale(0);
}


/* COMMENTAIRE */

#comments-list ul li {
  list-style-type: none;
}

/* FORMS  */

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  font-family: "Quicksand", serif;
  height: 38px;
  padding: 6px 10px;
  color: var(--prim);
  border: 1px solid var(--noir);
  background-color: var(--blanc);
  box-shadow: none;
  box-sizing: border-box;
  width: 100%;
  font-size: 1.6rem;
}

select option {
  background-color: var(--blue);
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  margin-top: 0.9rem;
  width: 100%;
  font-size: 1.6rem;
  font-family: "Quicksand", serif;
  min-height: 120px;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 100%;
}

form .row {
  gap: 1.2rem;
  margin-bottom: 1.2rem
}

form .row p {
  margin-bottom: 0;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--blanc);
}

.wpcf7-submit {
  font-size: 2rem;
  font-family: "Quicksand", serif;
}

.wpcf7-list-item {
  margin: 0 !important;
  font-size: 1.4rem !important;
  line-height: 1.8rem !important;
  display: flex;
}

.wpcf7-list-item input {
  margin: 0 1rem 0 0 !important
}

@media (max-width: 848px) {
  form {
    width: 95%;
    margin-left: 1.5%;
  }
}

@media (max-width: 720px) {
  form .row p:nth-of-type(even) {
    margin-left: 0;
  }
}


input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--noir);
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-size: 1.6rem;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label>.label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}

input::placeholder,
textarea::placeholder {
  color: var(--prim);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.38 6.6'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23404040; %7D %3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='5.19 6.6 0 1.41 1.41 0 5.19 3.78 8.97 0 10.38 1.41 5.19 6.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 99% 50%;
}

.grecaptcha-badge {
  visibility: hidden !important;
}


/* BREVO */

#sib-container {
  background-color: inherit !important;
}

.sib-form .entry__field {
  align-items: center;
  background: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
  display: -webkit-inline-flex;
  display: inline-flex;
  padding: 1rem;
}

.entry__choice label p {
  font-size: 1.4rem;
}

/* LAZY LOADIMG */

.lazy {
  opacity: 0;
}

.lazy:not(.initial) {
  transition: 1s;
}

.lazy.initial,
.lazy.loaded,
.lazy.error,
.lazy.entered {
  opacity: 1;
}

.copyr {
  position: absolute;
  bottom: 0;
  left: 1.4rem;
  color: var(--blanc);
  font-size: 1.4rem;
  z-index: 3;
}

@keyframes wave {
  0% {
    background-color: rgba(187, 187, 187, 0.8);
  }

  100% {
    background-color: rgba(187, 187, 187, 0.3);
  }
}

/* BUTTONS */

.button,
.wp-element-button,
button:not(#burger),
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  line-height: 3.3rem;
  max-width: 98%;
  min-width: 17.6rem;
  padding: 1.2rem 2.4rem 0.7rem;
  background-color: var(--sec);
  border-radius: 1.2rem;
  color: var(--noir);
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 2;
  border: none;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  transition: .3s;
}

.button.second {
  background-color: var(--prim);
}

.button:hover,
.wp-element-button:hover,
button:not(#burger):hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background-color: var(--blanc);
}

.button.tel svg {
  width: 1.6rem;
  margin-right: 1rem;
}


/* FOOTER */

footer {
  position: relative;
  padding: 3.6rem 0 6.4rem;
  min-height: 6rem;
  font-size: 1.6rem;
  z-index: 2;
}


footer .logo {
  width: 38rem;
}

footer ul {
  list-style: none;
}

footer img {
  width: 28rem !important;
}

footer p {
  font-size: 1.8rem;
  line-height: 3.4rem;
}

footer a,
footer li {
  text-decoration: none;
  line-height: 3.4rem;
}

footer a.prim {
  font-weight: 900;
}

footer a:hover {
  color: var(--orange);
}

footer .row.start ul:first-of-type {
  margin-right: 10%;
}

footer .row {
  justify-content: space-evenly;
}

footer .col {
  max-width: 26rem;
}

footer .social {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 8rem;
}

footer svg {
  fill: #FFF;
  width: 3.2rem;
}


footer .picto:hover {
  fill: var(--prim);
}

/* Form Booking */

form.booking_form {
  max-width: 100%;
}

.bpa-front-module--category {
  display: none;
}

/* RESPONSIVE */


@media (max-width: 1920px) {

  .hero h1 {
    font-size: 10.7vw;
    text-align: center;
    line-height: 10vw;
  }

  .hero p {
    font-size: 2.1vw !important;
    margin: 0;
    transform: translate(3.4vw, -1vw);
  }
}

@media (max-width: 1400px) {

  .aere {
    max-width: 40%;
  }

}

@media (max-width: 1160px) {


  h3,
  .h3-like {
    font-size: 2.4rem;
  }

  .row.infini .col4 {
    flex: 0 0 48%;
  }
}

@media (max-width: 980px) {

  h1,
  .h1-like {
    font-size: 5rem;
    line-height: 5rem;
  }

  .hero {
    height: 70vh;
  }

  .swiper,
  .swiper-container,
  .swiper-wrapper,
  .swiper-slide {
    height: 100%;
    position: relative;
  }

  .hero img {
    height: 100%;
  }

}


@media (max-width: 880px) {

  #navigation {
    padding: 0 3rem;
  }

  .row {
    display: block;
  }

  .row.nochange {
    display: flex;
  }

  .margetopL {
    margin-top: 6.4rem !important;
  }

  .col3,
  .col4,
  .col5,
  .col6,
  .col8 {
    margin-bottom: 2.4rem;
  }

  .aere {
    max-width: 80%;
    margin: 4.4rem auto;
  }

  .hero h1 {
    font-size: 20vw;
  }

  .hero p {
    font-size: 4vw !important;
    transform: translate(6vw, 2.2vw);
  }

  .fullImg .cadre {
    width: calc(100% - 2rem);
    left: 0;
  }

  form .row {
    margin-bottom: 0;
  }

  footer {
    text-align: center;
  }

  footer .col {
    max-width: 100%;
  }

}


@media (max-width: 578px) {

  .col4-like {
    max-width: 100%;
  }

}

@media (max-width: 510px) {

  h2 {
    font-size: 3.4rem;
    line-height: 4rem;
  }


}

@media (max-width: 408px) {
  .row.infini .col3 {
    flex: 0 0 100%;
  }

  .row.nochange {
    flex-flow: column;
  }

  .aere,
  .aire {
    max-width: 94%;
  }

  footer::before {
    width: 90%;
    height: 90%;
  }
}