/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* ROOT */
:root {
  --couleur-blanc: #ffffff;
  --couleur-blanc-rgb: 255, 255, 255;
  --couleur-noir: #000000;
  --couleur-primaire: #0c122a;
  --couleur-primaire-rgb: 12, 18, 42;
  --couleur-secondaire: #bb0f11;
  --couleur-secondaire-rgb: 187, 15, 17;
  --couleur-tierce: #dddee0;

  --global-font-family: "Inter", sans-serif;
  --title-font-family: "Inter", sans-serif;
  --menu-font-family: "Inter", sans-serif;

  --global-font-size: 1.6rem;
  --global-line-height: 2.6rem;
  --global-font-weight: 400;
  --global-letter-spacing: 0;

  --menu-font-size: 1.6rem;
  --menu-line-height: 2rem;
  --menu-font-weight: 600;
  --menu-letter-spacing: 0;

  --h1-font-family: var(--title-font-family);
  --h1-font-size: 3.5rem;
  --h1-line-height: 4rem;
  --h1-font-weight: 700;
  --h1-letter-spacing: 0;

  --h2-font-family: var(--title-font-family);
  --h2-font-size: 2.3rem;
  --h2-line-height: 2.9rem;
  --h2-font-weight: 700;
  --h2-letter-spacing: 0;

  --h3-font-family: var(--title-font-family);
  --h3-font-size: 1.8rem;
  --h3-line-height: 2.6rem;
  --h3-font-weight: 700;
  --h3-letter-spacing: 0;

  --h4-font-family: var(--global-font-family);
  --h4-font-size: 1.6rem;
  --h4-line-height: 2.6rem;
  --h4-font-weight: 600;
  --h4-letter-spacing: 0;

  --cta-font-family: var(--menu-font-family);
  --cta-font-size: 1.8rem;
  --cta-line-height: 2.3rem;
  --cta-font-weight: 300;
  --cta-letter-spacing: 0;

  --padding-y-section: 75px;

  --header-height: 80px;

  --bs-custom-gutter-x: 15px !important;
}

@media (min-width: 992px) {
  :root {
    --menu-font-size: 1.6rem;
    --menu-line-height: 2.2rem;

    --global-font-size: 1.6rem;
    --global-line-height: 2.5rem;

    --h1-font-size: 4.5rem;
    --h1-line-height: 5rem;

    --h2-font-size: 4.5rem;
    --h2-line-height: 5rem;

    --h3-font-size: 2.5rem;
    --h3-line-height: 3.5rem;

    --h4-font-size: 1.6rem;
    --h4-line-height: 2.6rem;

    --cta-font-size: 2rem;
    --cta-line-height: 2rem;

    --padding-y-section: 100px;

    --header-height: 100px;
  }
}

/* CHANGEMENTS BOOTSTRAP POUR DES PADDINGS DE 15px */
.row {
  --bs-custom-gutter-x: 15px !important;
  margin-right: calc(var(--bs-custom-gutter-x) / -1);
  margin-left: calc(var(--bs-custom-gutter-x) / -1);
}

.row > * {
  --bs-custom-gutter-x: 15px !important;
  padding-right: calc(var(--bs-custom-gutter-x) / 1);
  padding-left: calc(var(--bs-custom-gutter-x) / 1);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  --bs-custom-gutter-x: 15px !important;
  padding-right: var(--bs-custom-gutter-x, 0.5rem);
  padding-left: var(--bs-custom-gutter-x, 0.5rem);
  margin-right: auto;
  margin-left: auto;
}
/* FIN CHANGEMENTS BOOTSTRAP */

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  font-family: var(--global-font-family);
  color: var(--couleur-noir);
}

h1 {
  position: relative;
  font-family: var(--h1-font-family);
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-font-weight);
  letter-spacing: var(--h1-letter-spacing);
  color: var(--couleur-blanc);
  margin-bottom: 0;
}

h2 {
  position: relative;
  font-family: var(--h2-font-family);
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-font-weight);
  letter-spacing: var(--h2-letter-spacing);
  margin-bottom: 30px;
}

h2 span {
  font-family: var(--h2-font-family-span);
  font-size: var(--h2-font-size-span);
  line-height: var(--h2-line-height-span);
  font-weight: var(--h2-font-weight-span);
  letter-spacing: var(--h2-letter-spacing-span);
}

h2.h2 {
  position: relative;
  font-size: 3.6rem;
  line-height: 4.5rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: none;
}

p ~ h2 {
  margin-top: 40px;
}

h3 {
  position: relative;
  font-family: var(--h3-font-family);
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  font-weight: var(--h3-font-weight);
  letter-spacing: var(--h3-letter-spacing);
  margin-bottom: 20px;
}

p ~ h3 {
  margin-top: 30px;
}

h4,
.h4 {
  position: relative;
  font-family: var(--h4-font-family);
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  font-weight: var(--h4-font-weight);
  color: var(--couleur-pale);
  letter-spacing: var(--h4-letter-spacing);
  margin-bottom: 25px;
  text-transform: uppercase;
}

p,
a,
span,
li,
i {
  font-family: var(--global-font-family);
  font-size: var(--global-font-size);
  line-height: var(--global-line-height);
  font-weight: var(--global-font-weight);
  letter-spacing: var(--global-letter-spacing);
}

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

strong,
b {
  font-family: "gotham-narrow-bold", sans-serif;
  font-weight: 700;
}

ul,
li {
  list-style-type: none;
  padding-left: 0;
}

ul.menu {
  margin-bottom: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s;
}

a:hover {
  color: inherit;
  transition: all 0.3s;
}

[class*="menu-item"] a {
  display: inline-block;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s;
}

[class*="menu-item"] a:hover,
.current-menu-item a {
  color: inherit;
  transition: all 0.3s;
}

img {
  width: 70%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

section,
.section {
  display: block;
  position: relative;
  padding-top: var(--padding-y-section);
  padding-bottom: var(--padding-y-section);
}

@media (min-width: 992px) {
  section,
  .section {
    padding-top: var(--padding-y-section);
    padding-bottom: var(--padding-y-section);
  }

  header + section {
    padding-top: 200px;
  }
}

.cta {
  position: relative;
  display: inline-flex;
  width: max-content;
  color: var(--couleur-blanc);
  line-height: 2rem;
  font-weight: 600;
  padding: 0 5px;
  box-shadow: inset 500px 0 0 0 var(--couleur-secondaire);
  text-transform: uppercase;
  transition: all 0.3s;
}

.cta:hover {
  box-shadow: inset 0 0 0 0 var(--couleur-secondaire);
  color: var(--couleur-secondaire);
  text-decoration: none;
  transition: all 0.3s;
}

.fond-couleur-primaire {
  background-color: var(--couleur-primaire);
  color: var(--couleur-blanc);
}

.fond-couleur-secondaire {
  background-color: var(--couleur-secondaire);
}

.fond-couleur-tierce {
  background-color: var(--couleur-tierce);
}

@media (min-width: 992px) {
  .ligne-top-bottom:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 30vw;
    width: 3px;
    height: calc(100% + 10px);
    background-color: var(--couleur-secondaire);
    z-index: -1;
  }
}

.border-top-secondaire {
  border-top: 3px solid var(--couleur-secondaire);
}

.border-top-secondaire.content > h3 {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .border-top-secondaire.content > h3 {
    margin-top: 60px;
  }
}

.content p:empty {
  display: none;
}

.content p {
  margin-bottom: 30px;
}

.d-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 992px) {
  .d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.succursale-card a:not(.cta) {
  color: var(--couleur-blanc);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.succursale-card a:hover {
  color: var(--couleur-secondaire);
}

.succursale-card .bottom {
  margin-bottom: 50px;
}

.succursale-card hr {
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: var(--couleur-secondaire);
  height: 2px;
  opacity: 1;
  border: none;
}

.succursale-card .cta {
  margin-top: 30px;
}

.succursale-card img{
	height: 275px;
}

@media (min-width: 992px) {
  #info-succursale .row + .row {
    margin-top: 60px;
  }
}

.row-cols-1 {
  row-gap: 90px;
}

label {
  font-size: 1.5rem;
  line-height: 2.2rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 15px;
}

.wpcf7-form-control {
  color: #fff;
}

label .wpcf7-form-control {
  margin-top: 7px;
}

label span {
  /* display: block;
    margin-top: 15px; */
}

label,
label span,
label input,
label textarea {
  width: 100%;
}

label input,
label textarea {
  background-color: transparent;
  border-width: 1px;
  border: none;
  border-bottom: 3px solid var(--couleur-secondaire);
  border-radius: 0;
  padding: 10px 0;
}

label textarea {
  height: 150px;
  min-height: 150px;
}

input[type="submit"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  position: relative;
  display: inline-flex;
  width: max-content;
  color: var(--couleur-blanc);
  background-color: transparent;
  line-height: 2rem;
  font-weight: 600;
  margin-top: 30px;
  padding: 0 5px;
  box-shadow: inset 500px 0 0 0 var(--couleur-secondaire);
  text-transform: uppercase;
  transition: all 0.3s;
}

input[type="submit"]:hover {
  box-shadow: inset 0 0 0 0 var(--couleur-secondaire);
  transition: all 0.3s;
}

input::placeholder,
textarea::placeholder {
  font-weight: 400;
  color: var(--couleur-blanc);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
  height: var(--header-height);
}

/* MENU MOBILE */
/* MENU MOBILE */
/* MENU MOBILE */
/* MENU MOBILE */
/* MENU MOBILE */
/* MENU MOBILE */

#mobile {
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--couleur-primaire);
}

#mobile .container > .row > [class*="col"] {
  z-index: 111;
}

@media (min-width: 992px) {
  #mobile {
    display: none;
  }
}

.logo-mobile {
  position: relative;
  object-fit: contain;
  z-index: 0;
}

.logo-mobile {
  max-width: 100px;
}

#hamburger,
.hamburger {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#menu-hamburger {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  color: var(--couleur-blanc);
  background: rgba(var(--couleur-primaire-rgb), 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99;
  box-sizing: border-box;
  padding-bottom: 50px;
  overflow: hidden;
  overflow-y: scroll;
  transition: all 0.5s ease;
}

#menu-hamburger.slide {
  right: 0;
}

#menu-mobile {
  margin-top: 100px;
}

#menu-mobile > li:not(:last-child) {
  margin-bottom: 50px;
}

#menu-mobile a {
  font-family: var(--menu-font-family);
}

#menu-mobile > li > a {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 300;
  color: var(--couleur-blanc);
  text-transform: uppercase;
}

#menu-mobile .menu-item-has-children a {
  margin-bottom: 20px;
}

#menu-mobile .sub-menu li a {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--couleur-blanc);
}

#menu-mobile .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  margin-top: 175px;
}

.hamburger {
  position: fixed;
  display: flex;
  width: 50px;
  height: 27px;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
  transition: all 0.5s ease;
}

.hamburger span {
  position: absolute;
  display: block;
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--couleur-blanc);
}

/* .hamburger span,
.hamburger span:before,
.hamburger span:after{
    display: block;
    position: absolute;
    height: 1px;
    border-radius: 1px;
    background: var(--couleur-primaire);
	padding: 1px 0;
}

.hamburger span{
	background-color: transparent;
}

.hamburger span:before,
.hamburger span:after{
    background: var(--couleur-primaire);
	box-shadow: 0px 0px 1px 0.7px var(--couleur-secondaire);
}

.hamburger:hover span:before,
.hamburger:hover span:after{
    background: var(--couleur-primaire);
}

.hamburger span{
    width: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.hamburger span:before,
.hamburger span:after{
    width: 25px;
    transition: all 0.5s ease;
}

.hamburger span:before{
    content: "";
    top: 5px
}

.hamburger span:after{
    content: "";
    bottom: 5px
}

.hamburger.ouvert{
    transition: all 0.5s ease;
}

.hamburger.ouvert span{
    transition: all 0.3s ease;
    background: transparent;
}

.hamburger.ouvert span:before{
    transform: rotate(135deg);
    top: 0;
    transition: all 0.5s ease;
}
.hamburger.ouvert span:after{
    transform: rotate(-135deg);
    bottom: 0;
    transition: all 0.5s ease;
} */
/*  */

/* MENU DESKTOP */
/* MENU DESKTOP */
/* MENU DESKTOP */
/* MENU DESKTOP */

#desktop {
  display: none;
  align-items: center;
  height: var(--header-height);
  background-color: rgba(var(--couleur-primaire-rgb), 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

#desktop > .container-fluid > .row {
  display: flex;
  justify-content: space-between;
}

#desktop .col-auto {
  display: flex;
  align-items: center;
}

#desktop .logo-desktop {
  display: flex;
  align-items: center;
}

#desktop .logo-desktop img {
  max-width: 205px;
  max-height: 65px;
}

#menu-principal {
  display: flex;
  height: var(--header-height);
}

#menu-principal li {
  display: flex;
  align-items: center;
}

#menu-principal > li:not(:last-of-type) {
  margin-right: 15px;
}

#menu-principal li a {
  position: relative;
  font-family: var(--menu-font-family);
  text-transform: uppercase;
  color: var(--couleur-blanc);
  transition: all 0.3s;
}

#menu-principal li:not(.btn-soumission) a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--couleur-secondaire);
}

#menu-principal li:not(.btn-soumission) a:hover:before,
#menu-principal li.current-menu-item:not(.btn-soumission) > a:before {
  width: 100%;
  transition: all 0.3s;
}

#menu-principal .btn-soumission a {
  background-color: var(--couleur-primaire);
  padding: 37.5px 50px;
}

#menu-principal .btn-soumission a:hover {
  background-color: var(--couleur-secondaire);
}

#menu-principal .menu-item-has-children {
  position: relative;
}

#menu-principal .sub-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: 210px;
  top: 100%;
  left: calc(-105px + 50%);
  padding: 15px;
  background-color: rgba(var(--couleur-primaire-rgb), 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

#menu-principal .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

#menu-principal .sub-menu li {
  display: block;
  text-align: center;
}

#menu-principal .sub-menu a {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: none;
  text-align: center;
}

#menu-principal .sub-menu li:not(:last-of-type) a {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  #desktop {
    display: flex;
  }
}

@media (min-width: 1100px) {
  #menu-principal > li:not(:last-of-type) {
    margin-right: 30px;
  }
}

@media (min-width: 1200px) {
  #menu-principal > li:not(:last-of-type) {
    margin-right: 55px;
  }
}
/*  */

#banniere {
  height: 50vh;
  padding-top: 0;
  padding-bottom: 0;
  /* overflow: hidden; */
}

#banniere .container,
#banniere .container-fluid {
  display: flex;
  align-items: center;
  height: 100%;
}

#banniere .container > .row,
#banniere .container-fluid > .row {
  width: 100%;
  margin-top: var(--header-height);
}

#banniere.accueil {
  height: 95vh;
}

#banniere.accueil h1 {
  font-size: 2rem;
  line-height: 3.5rem;
}

#banniere .section-gauche {
  display: flex;
  align-items: center;
}

#banniere .section-droite {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: left;
}

#banniere.accueil .section-gauche {
  padding-bottom: 30px;
  border-bottom: 1.5px solid var(--couleur-secondaire);
}

#banniere.accueil .section-droite {
  padding-top: 30px;
  border-top: 1.5px solid var(--couleur-secondaire);
}

#banniere .section-droite p {
  color: var(--couleur-blanc);
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 600;
}

#banniere .cta {
  margin-top: 30px;
}

.rank-math-breadcrumb {
  display: none;
}

.rank-math-breadcrumb p {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 0;
}

.rank-math-breadcrumb a,
.rank-math-breadcrumb span {
  font-size: 1.2rem;
  line-height: 2.5rem;
  color: var(--couleur-blanc);
  text-transform: uppercase;
}

.rank-math-breadcrumb a {
  font-weight: 700;
}

.rank-math-breadcrumb a:hover {
  color: var(--couleur-secondaire);
}

.rank-math-breadcrumb span {
  font-weight: 300;
}

.rank-math-breadcrumb .separator {
  display: none;
}

@media (min-width: 992px) {
  #banniere {
    height: 40vh;
  }

  #banniere.accueil {
    height: 95vh;
  }

  #banniere .container,
  #banniere .container-fluid {
    justify-content: center;
  }

  #banniere [class*="section"] {
    height: 100%;
  }

  #banniere.accueil h1 {
    font-size: 6rem;
    line-height: 7.5rem;
  }

  #banniere.accueil .section-gauche,
  #banniere .section-gauche {
    justify-content: flex-end;
    text-align: right;
    padding-bottom: 0;
    padding-right: 45px;
    border-bottom: none;
    border-right: 1.5px solid var(--couleur-secondaire);
  }

  #banniere.accueil .section-droite,
  #banniere .section-droite {
    padding-top: 0;
    padding-left: 45px;
    border-top: none;
    border-left: 1.5px solid var(--couleur-secondaire);
  }

  #banniere .section-droite p {
    font-size: 2.5rem;
    line-height: 2.6rem;
  }

  .rank-math-breadcrumb {
    display: block;
  }
}

#services {
  overflow-x: clip;
}

#services .relative {
  position: relative;
}

.page-template-page-services #services h2 {
  color: var(--couleur-blanc);
}

.slick-slider-services {
  position: relative;
  left: 45px;
  width: 100vw;
  height: auto;
}

.slick-slider-services .slick-track,
.slick-slider-services .slick-list,
.slick-slider-services .slick-slide,
.slick-slider-services .slick-slide .service-wrapper,
.slick-slider-services .slick-slide .service-wrapper img {
  height: 100%;
}

.slick-slider-services .inner-image {
  height: 330px;
}

.slick-slider-services .service {
  position: relative;
  width: calc(100vw - 30px);
  margin: 0 15px;
}

.slick-slider-services .service:hover .cta {
  box-shadow: inset 0 0 0 0 var(--couleur-secondaire);
  color: var(--couleur-secondaire);
  transition: all 0.3s;
}

.slick-slider-services .service .nom-service {
  position: absolute;
  left: 20px;
  top: 290px;
  font-size: 1.2rem;
}

.slick-slider-services .service .intro-service {
  margin-top: 30px;
  color: var(--couleur-blanc);
  padding-right: 50px;
}

@media (min-width: 992px) {
  .slick-slider-services {
    height: auto;
    left: 0;
  }

  .slick-slider-services .service {
    width: 30vw;
  }

  .slick-slider-services .service .inner-image {
    height: 470px;
  }

  .slick-slider-services .service .nom-service {
    left: 30px;
    top: 440px;
    font-size: 1.4rem;
  }

  .slick-slider-services .service .intro-service {
    padding-right: 0;
  }
}

.arrows-area {
  position: absolute;
  top: calc(330px / 2 - 80px);
  transform: translate(0, 50%);
}

.slick-fleche {
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(var(--couleur-blanc-rgb), 0.2);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.slick-fleche:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 33.3333%;
  width: 33.3333%;
  height: 3px;
  background-color: var(--couleur-secondaire);
}

.slick-fleche:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  left: 33.3333%;
  width: 16px;
  height: 16px;
  border-left: 3px solid var(--couleur-secondaire);
  border-bottom: 3px solid var(--couleur-secondaire);
  transform: rotateZ(45deg);
}

.slick-fleche.gauche:before {
  transform: translateY(-50%) rotateZ(0deg);
}

.slick-fleche.droite:before {
  top: calc(50% - 1.5px);
}

.slick-fleche.droite:after {
  left: auto;
  right: 33.3333%;
  transform: rotateZ(-135deg);
}

@media (min-width: 992px) {
  .slick-fleche {
    width: 144px;
    height: 144px;
  }

  .arrows-area {
    top: calc(470px / 2 - 144px);
    transform: translate(-50%, 50%);
  }
}

#a-propos {
  padding-bottom: 0;
}

#a-propos > .container-fluid > .row {
  align-items: center;
}

#a-propos h2 {
  margin-bottom: 30px;
}

#a-propos .cta {
  margin-top: 30px;
}

#a-propos img {
  margin-top: 85px;
}

@media (min-width: 992px) {
  #a-propos img {
    margin-top: 0;
  }
}

.page-template-page-a-propos #a-propos {
  color: var(--couleur-blanc);
  padding-bottom: var(--padding-y-section);
}

#realisations {
  overflow: hidden;
}

#realisations h2 {
  color: var(--couleur-secondaire);
  margin-bottom: 30px;
}

#realisations .images-realisations {
  position: relative;
  width: 300vw;
  left: -20vw;
  margin: 25px auto;
}

#realisations .img-realisation {
  height: 215px;
  margin: 0 5px;
  transform: translate3d(
    -350px,
    0px,
    0px
  ); /* ANIMATION PARALLAX HORIZONTAL EN JS */
}

.texte-sous-realisations .row {
  align-items: center;
}

.texte-sous-realisations h3 {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  #realisations .images-realisations {
    position: relative;
    width: 130vw;
    left: -20vw;
    margin: 50px auto;
  }

  #realisations .img-realisation {
    height: 375px;
    margin: 0 10px;
  }
}

#contenu + #realisations {
  padding-top: 0;
}

#contenu h2,
#a-propos h2 {
  color: var(--couleur-secondaire);
  margin-bottom: 30px;
}

#contenu .cta {
  margin-top: 35px;
}

#intro {
  color: var(--couleur-blanc);
}

#intro + #articles {
  padding-top: 0;
}

#filtre-realisations {
  padding-top: 0;
  padding-bottom: 0;
}

.button-group.filter-button-group {
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
  border-top: 3px solid var(--couleur-secondaire);
  padding-top: 20px;
  margin-bottom: 75px;
}

.button-group.filter-button-group .container-filter {
  display: inline-flex;
  width: 32%;
}

#filtre-realisations button {
  margin: 20px 0;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 600;
  background: none;
  border: none;
  margin: 10px 0;
  color: var(--couleur-blanc);
  text-transform: uppercase;
  cursor: pointer;
}

#filtre-realisations button.cta {
  box-shadow: inset 0 0 0 0 var(--couleur-secondaire);
}

#filtre-realisations .active button.cta,
#filtre-realisations button.cta:hover {
  box-shadow: inset 500px 0 0 0 var(--couleur-secondaire);
}

.grid .img-realisation {
  height: 200px;
}

.element-item {
  margin-top: 30px;
  margin-bottom: 30px;
}

.element-item span {
  display: block;
  margin-top: 20px;
  color: var(--couleur-blanc);
}

@media (min-width: 992px) {
  #filtre-realisations {
    padding-bottom: var(--padding-y-section);
  }

  .button-group.filter-button-group {
    display: flex;
    /* flex-direction: row; */
  }

  .button-group.filter-button-group .container-filter {
    display: flex;
    width: auto;
  }

  #filtre-realisations button {
    margin: 0;
  }

  .grid .img-realisation {
    height: 400px;
  }
}

.content a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--couleur-blanc);
}

.content a:hover {
  color: var(--couleur-secondaire);
}

.contenu-texte + .slick-slider-temoignages {
  margin-top: 40px;
}

.slick-track-temoignages {
  display: flex !important;
}

.slick-slide-temoignages > div,
.slick-slide-temoignages .inner {
  display: flex !important;
  width: 100% !important;
  margin: auto;
}

.inner.temoignage p {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: 700;
}

.nom-client {
  position: relative;
  display: block;
  padding-left: 15px;
  margin-top: 30px;
}

.nom-client:before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 2px;
  background-color: var(--couleur-blanc);
  top: calc(50% - 2px);
  left: 0;
}

.dots-area {
  display: flex;
  align-items: center;
  height: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.custom-dots {
  display: flex;
}

.custom-dots .slick-active,
.custom-dots li {
  margin: 0 7px;
  opacity: 0.2;
}

.custom-dots .slick-active {
  opacity: 1;
}

.custom-dots li button {
  -webkit-appearance: none;
  width: 100%;
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--couleur-blanc);
  border: 2px solid var(--couleur-blanc);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slick-dots {
  color: var(--couleur-blanc);
}

.slick-dots li,
.slick-dots span {
  font-size: 3rem;
  font-family: var(--police-secondaire);
  margin-bottom: 0;
}

.slick-dots li:not(.slick-active) {
  display: none;
}

@media (min-width: 576px) {
  .slick-slide-temoignages {
    margin: 0 15px;
  }

  .slick-slide.inner.temoignage {
    padding: 0 15px 0 0;
  }
}

@media (min-width: 992px) {
  .slick-slide-temoignages > div,
  .slick-slide-temoignages .inner {
    /* width: 200px!important; */
    height: 200px;
  }

  .slick-slide.inner.temoignage {
    padding: 0 30px 0 0;
  }

  .inner.temoignage p {
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 700;
  }

  .dots-area {
    justify-content: flex-end;
    margin-bottom: 0;
  }
}

#articles {
  color: var(--couleur-blanc);
  padding-bottom: 0;
}

.article-recent {
  border-top: 3px solid var(--couleur-secondaire);
  padding-bottom: 110px;
}

.article {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}

.article span {
  text-transform: uppercase;
}

.article p {
  margin: 30px 0;
}

.article-recent .article {
  margin-bottom: 30px;
}

.img-article {
  height: 370px;
}

.autres-articles .article {
  border-top: 3px solid var(--couleur-secondaire);
  padding-bottom: 80px;
}

#autres-articles {
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .article-recent .article {
    margin-bottom: 0;
  }
}

.single-post {
  color: var(--couleur-blanc);
}

.single-post .date {
  display: block;
  font-weight: 600;
  margin-top: 15px;
  text-transform: uppercase;
}

.retour-blogue {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-left: 3px solid var(--couleur-secondaire);
}

.retour-blogue a {
  color: var(--couleur-blanc);
}

.retour-blogue a:hover {
  color: var(--couleur-secondaire);
}

.contenu-texte h2 {
  margin-bottom: 30px;
}

.contenu-texte ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.contenu-texte li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.contenu-texte li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 3px;
  background-color: var(--couleur-secondaire);
}

.single-post #intro {
  padding-top: 0;
}

.single-post .contenu-texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.single-post #intro img {
  margin-top: 30px;
}

.single-services .contenu-texte a {
  color: var(--couleur-secondaire);
}

.single-services .contenu-texte a:hover {
  text-decoration: underline;
}

#single .contenu-texte,
#single .contenu-texte h2,
#single .contenu-texte h3,
#single .contenu-texte h4 {
  color: var(--couleur-primaire);
}

.single-post .contenu-texte a,
#single .contenu-texte a {
  color: var(--couleur-secondaire);
}

.single-post .contenu-texte a:hover,
#single .contenu-texte a {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .single #intro img {
    margin-top: 0;
  }

  #single h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  #single h3 {
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 600;
  }

  #single h4 {
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: 600;
  }
}

.intro-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-service .cta {
  margin-top: 30px;
  margin-bottom: 50px;
}

.avant-apres {
  position: relative;
  height: 50vh;
}

.avant-apres img {
  position: absolute;
  top: 0;
  width: calc(100% - 45px);
  height: 100%;
  transition: 0.3s ease;
}

.avant-apres.-avant .img-avant-apres img:first-of-type {
  visibility: visible;
  opacity: 1;
}

.avant-apres .img-avant-apres img:first-of-type {
  visibility: hidden;
  opacity: 0;
}

.avant-apres.-avant .img-avant-apres img:last-of-type {
  visibility: hidden;
  opacity: 0;
}

.avant-apres .img-avant-apres img:last-of-type {
  visibility: visible;
  opacity: 1;
}

.avant-apres .texte-avant-apres {
  position: absolute;
  left: 0;
  bottom: 15px;
}

.avant-apres .texte-avant-apres span {
  margin: 0 15px;
  line-height: 2rem;
  font-weight: 600;
  padding: 0 5px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.avant-apres.-avant .texte-avant-apres span:first-of-type {
  background-color: rgba(var(--couleur-secondaire-rgb), 1);
}

.avant-apres .texte-avant-apres span:first-of-type {
  background-color: rgba(var(--couleur-secondaire-rgb), 0.5);
}

.avant-apres.-avant .texte-avant-apres span:last-of-type {
  background-color: rgba(var(--couleur-secondaire-rgb), 0.5);
}

.avant-apres .texte-avant-apres span:last-of-type {
  background-color: rgba(var(--couleur-secondaire-rgb), 1);
}

.avant-apres .slick-fleche {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

@media (min-width: 992px) {
  .avant-apres img {
    width: 100%;
  }

  .intro-service .cta {
    margin-bottom: 0;
  }

  .avant-apres {
    height: 565px;
  }

  .avant-apres .texte-avant-apres {
    left: 15px;
    bottom: 20px;
  }

  .avant-apres .slick-fleche {
    transform: translate(50%, -50%);
  }
}

.texte-contact a {
  color: var(--couleur-blanc);
}

.texte-contact a:hover {
  color: var(--couleur-secondaire);
}

#map {
  padding-top: 0;
  padding-bottom: 0;
}

.acf-map {
  height: 300px;
  margin-top: var(--padding-y-section);
}

@media (min-width: 992px) {
  .acf-map {
    height: 600px;
    margin-top: 0;
  }
}

footer {
  color: var(--couleur-blanc);
  background-color: var(--couleur-primaire);
}

footer .lien-footer {
  display: flex;
  align-items: center;
}

footer .lien-footer .cta {
  margin-bottom: 0;
  margin-top: 30px;
}

footer #coordonnees {
  color: var(--couleur-noir);
  padding-right: var(--bs-custom-gutter-x);
  padding-left: var(--bs-custom-gutter-x);
}

footer .horaire {
  margin-top: 50px;
}

footer .reseaux-sociaux {
  margin-top: 50px;
}

footer .social {
  margin-right: 15px;
}

footer a {
  color: var(--couleur-noir);
  line-height: 2.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

footer a:hover,
footer .menu a:hover {
  color: var(--couleur-secondaire);
  text-decoration: underline;
  transition: all 0.3s;
}

footer .menu a {
  font-size: 1.2rem;
  line-height: 2.6rem;
  text-decoration: underline;
}

footer .rbq {
  display: block;
  font-size: 1.2rem;
  line-height: 2.6rem;
  font-weight: 600;
  margin-bottom: 30px;
}

footer .partenaires {
  display: flex;
  align-items: flex-end;
}

.inner.partenaire {
  max-width: 100px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  footer .lien-footer {
    justify-content: flex-end;
  }

  footer .lien-footer .cta {
    margin-top: 0;
  }

  footer .horaire {
    margin-top: 0;
  }

  footer .rbq {
    margin-bottom: 40px;
  }
}

#droits {
  padding-top: 20px;
  padding-bottom: 20px;
}

#droits .logo-marketing {
  margin-top: 15px;
}

#droits .logo-marketing a {
  margin: 0;
  display: flex;
  align-items: center;
}

#droits .logo-marketing a svg {
  height: 15px;
}

#droits .logo-marketing span {
  margin: 0 10px;
}

#droits span {
  font-size: 1.4rem;
}

#droits > .container > .row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#droits .col {
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  #droits > .container > .row {
    flex-direction: row;
  }

  #droits .col {
    display: flex;
    justify-content: space-between;
  }

  #droits .logo-marketing {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
  }
}

.btn-consent {
  display: block;
  position: fixed;
  right: 75px;
  bottom: 0;
  padding: 8px 10px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
  color: #000;
  font-size: 16px;
  transform: translateY(75%);
  transition: transform 0.3s;
  z-index: 9;
}

.btn-consent:hover {
  color: #000;
  text-decoration: none;
  transform: none;
}

.wp-block-columns {
  max-width: 944px;
  margin: 0 auto;
  width: calc(100% - 40px);
  gap: 94px;
}

.wp-block-columns a {
  color: white;
}

select {
  background-color: transparent;
  border-width: 1px;
  border: none;
  border-bottom: 3px solid var(--couleur-secondaire);
  border-radius: 0;
  padding: 10px 0;
  width: 100%;
}


/* ============================================ */
/* Section "Nos derniers articles" - Home       */
/* ============================================ */

#derniers-articles {
    padding: var(--padding-y-section) 0 !important;
    background: var(--couleur-blanc);
}

#derniers-articles h2 {
    color: var(--couleur-secondaire) !important;
    text-align: center;
    margin-bottom: 50px;
}

#derniers-articles .article-preview {
    height: 100%;
    background: var(--couleur-blanc);
}

#derniers-articles a.article-link,
#derniers-articles a.article-link:hover,
#derniers-articles a.article-link:visited,
#derniers-articles a.article-link:focus {
    display: block;
    text-decoration: none !important;
    color: var(--couleur-primaire) !important;
    height: 100%;
}

#derniers-articles a.article-link:hover .article-preview {
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}

#derniers-articles .article-thumbnail {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--couleur-tierce);
}

#derniers-articles .article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

#derniers-articles a.article-link:hover .article-thumbnail img {
    transform: scale(1.05);
}

#derniers-articles h3.article-title {
    color: var(--couleur-primaire) !important;
    font-family: var(--h3-font-family);
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    line-height: 1.3;
    margin: 0 0 12px;
    transition: color 0.3s;
}

#derniers-articles a.article-link:hover h3.article-title {
    color: var(--couleur-secondaire) !important;
}

#derniers-articles p.article-excerpt {
    color: var(--couleur-primaire) !important;
    font-size: 1.4rem;
    line-height: 2.1rem;
    margin-bottom: 15px;
    opacity: 0.85;
}

#derniers-articles span.article-cta {
    display: inline-block;
    color: var(--couleur-secondaire) !important;
    font-weight: 600 !important;
    font-size: 1.3rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    position: relative;
}

#derniers-articles span.article-cta::after {
    content: " \2192";
    margin-left: 4px;
    transition: transform 0.3s;
    display: inline-block;
}

#derniers-articles a.article-link:hover span.article-cta::after {
    transform: translateX(4px);
}

#derniers-articles .row + .row {
    margin-top: 40px;
}

@media (max-width: 767px) {
    #derniers-articles {
        padding: 50px 0 !important;
    }
    #derniers-articles h2 {
        margin-bottom: 30px;
    }
}

/* ============================================ */
/* Barre de confiance (Trust bar) - Home        */
/* ============================================ */

#trust-bar {
    background: var(--couleur-primaire);
    padding: 50px 0;
    color: var(--couleur-blanc);
}

#trust-bar .trust-item {
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

#trust-bar .trust-item:last-child {
    border-right: none;
}

#trust-bar .trust-num {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--couleur-blanc) !important;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

#trust-bar .trust-num sup {
    font-size: 2.6rem;
    color: var(--couleur-secondaire);
    top: -0.4em;
    margin-left: 2px;
    font-weight: 800;
}

#trust-bar .trust-stars {
    color: #fbbf24;
    font-size: 2.4rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    line-height: 1;
}

#trust-bar .trust-cert {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--couleur-blanc) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    line-height: 1.3;
}

#trust-bar .trust-label {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

@media (max-width: 991px) {
    #trust-bar {
        padding: 40px 0;
    }
    #trust-bar .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    #trust-bar .trust-item:nth-last-child(-n+2):not(:nth-child(odd)) {
        border-bottom: none;
    }
}

@media (max-width: 575px) {
    #trust-bar .trust-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-right: none;
    }
    #trust-bar .trust-item:last-child {
        border-bottom: none;
    }
    #trust-bar .trust-num { font-size: 3.4rem; }
    #trust-bar .trust-num sup { font-size: 2rem; }
    #trust-bar .trust-cert { font-size: 1.4rem; }
}
