@charset "UTF-8";
/* ----- Overlay de transition ----- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
#page-transition {
  position: fixed;
  inset: 0;
  background: #0075C7;
  /* adapte à ta charte */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  /* on utilise une grille pour centrer le logo */
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: translateX(0);
  /* sera animé en JS via xPercent */
}

/* Conteneur qui se déplace (panneau coulissant) */
#page-transition .panel {
  position: absolute;
  inset: 0;
  background: inherit;
  /* même fond que l’overlay */
  will-change: transform;
}

/* Logo au centre */
#page-transition .overlay-logo {
  width: clamp(120px, 12vw, 200px);
  height: auto;
  opacity: 0;
  /* animé en JS */
  transform: translateX(0) scale(0.96);
  will-change: transform, opacity;
}

#page-transition .overlay-logo img,
#page-transition .overlay-logo svg {
  width: 40rem;
  height: 20rem;
  object-fit: contain;
  display: block;
}

#page-exit-overlay {
  position: fixed;
  inset: 0;
  background: #0075C7;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  visibility: hidden;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  font-display: swap;
  color: black;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  min-height: 100vh;
  font-size: 1.6rem;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}

header {
  width: 100%;
  display: block;
  position: relative;
}

header a {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #0075C7;
  transition: all 0.2s ease-in-out 0s;
}
a:hover {
  color: #1B1B1B;
}

hr {
  display: block;
  width: 100px;
  margin: 20px 0px;
  border: 1px solid #0075C7;
}

.no-scroll {
  overflow: hidden;
  height: 100vh !important;
}

html {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  font-display: swap;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
  line-height: 1.25;
  font-display: swap;
  font-family: "Inter", sans-serif;
}

p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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, 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;
  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;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.hide {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  width: 1px;
  height: 1px;
}

.heading {
  font-size: 24px;
  color: #EBAC19;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 2rem;
  z-index: 10;
  position: relative;
  text-align: center;
}
.heading--center {
  text-align: center;
  margin: 0 auto;
}
.heading--left {
  text-align: left;
  margin: 0;
}
.heading--white > * {
  color: #fff !important;
}
.heading--white .heading__desc {
  opacity: 0.65;
}
.heading__head {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1B1B1B;
}
.heading__title {
  font-size: 3rem;
  margin-top: 0;
  position: relative;
  font-weight: 700;
  color: #0075C7;
}
.heading__title em {
  font-style: normal;
  color: #0075C7;
}
.heading__title span {
  font-style: normal;
  color: #0075C7;
}
.heading__subtitle {
  color: #1B1B1B;
  font-weight: 700;
  font-size: 2rem;
  line-height: 23px;
  margin: 1rem 0;
}
.heading__desc {
  color: #1B1B1B;
  line-height: 23px;
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 1rem;
}
.heading__desc p {
  line-height: 23px;
  font-size: 1.6rem;
  font-weight: 300;
  font-weight: #1B1B1B;
}
.heading__desc p + p {
  margin-top: 20px;
}
.heading__divider {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #707070;
}

.heading--btn {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.heading--btn .heading__title {
  max-width: 800px;
}
.heading--btn .btn {
  display: inline-block;
  margin-top: 0;
}

.cta {
  margin-top: 2rem;
  text-align: center;
}

.title--footer {
  color: #EBAC19;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.title--left {
  text-align: left;
}
.title--right {
  text-align: right;
}
.title--center {
  text-align: center;
}
.title--white {
  color: #fff;
}
.title--black {
  color: #1B1B1B;
}
.title--uppercase {
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .heading {
    max-width: 500px;
  }

  .heading__title {
    font-size: 2.8rem;
    text-align: center;
  }

  .heading__desc {
    text-align: center;
  }

  .heading__subtitle {
    text-align: center;
  }
}
.btn {
  padding: 1.2rem 4rem;
  color: #fff;
  background: #0075C7;
  font-size: 1.7rem;
  transition: all 0.2s ease-in-out 0s;
  margin-top: 2rem;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  border-radius: 15px 5px 15px 5px;
  border: 1px solid #0075C7;
  align-self: baseline;
}
.btn i {
  padding-right: 15px;
  color: #fff;
}
.btn:hover {
  background-color: #EBAC19;
  color: #fff;
  border: 1px solid #EBAC19;
}
.btn--black {
  background-color: #1B1B1B;
  border: 1px solid #1B1B1B;
  color: #fff;
}
.btn--white {
  background: #fff;
  border: 1px solid #fff;
  color: #707070;
}
.btn--white:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn--primary {
  background-color: #0075C7;
  color: white;
  border: 1px solid #0075C7;
}
.btn--primary:hover {
  background-color: #fff;
  color: #0075C7;
  border: 1px solid #fff;
}
.btn--secondary {
  background-color: #EBAC19;
  color: white;
  border: 1px solid #EBAC19;
}
.btn--secondary:hover {
  background-color: #fff;
  color: #0075C7;
  border: 1px solid #fff;
}
.btn--small {
  font-size: 12px;
  padding: 10px 20px;
}
.btn--big {
  font-size: 16px;
  padding: 20px 60px;
}

.icon--service {
  max-width: autos;
  max-height: 80px;
}

#hero {
  position: relative;
  height: 60vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#hero:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: rgba(1, 1, 1, 0.2);
}
#hero .container {
  height: 100%;
}

.hero__container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12rem 0;
  z-index: 5;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero__bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* Ratio 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  /* Ratio 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__content {
  color: white;
  max-width: 650px;
}

.hero__title {
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
}
.hero__title em {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-size: 10rem;
}

.hero__shop {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__shop li {
  text-transform: uppercase;
  margin-left: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.7px;
}
.hero__shop li:before {
  content: "";
  height: 10px;
  width: 1px;
  background-color: #0075C7;
  display: inline-block;
  margin-right: 1rem;
}
.hero__shop li:first-child {
  margin-left: 0;
}
.hero__shop li:first-child:before {
  display: none;
}

.hero__cta {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
}
.hero__cta a {
  align-self: flex-start;
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
  background-color: #0075C7;
  border-color: #0075C7;
}
.hero__cta a + a {
  margin-left: 2rem;
  background-color: #EBAC19;
  border-color: #EBAC19;
}

@media (max-width: 1024px) {
  #hero {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  #hero {
    height: calc(100vh - 6rem);
    max-height: 60rem;
  }

  .hero__title {
    font-size: 4.5rem;
  }

  .hero__cta {
    flex-direction: column;
  }
  .hero__cta a {
    display: block;
    margin-left: 0 !important;
    align-self: baseline;
  }

  .hero__container {
    padding: 4rem 0;
  }
}
#intro .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1000px;
}

.intro__content {
  width: 50%;
  padding-right: 10%;
}

.intro__text {
  width: 50%;
}
.intro__text p {
  font-size: 1.6rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  #intro .container {
    flex-direction: column;
  }

  .intro__content {
    width: 100%;
    margin-bottom: 2rem;
  }

  .intro__text {
    width: 100%;
  }
}
p, ul, li {
  margin: 0;
  padding: 0;
}

a {
  color: #0075C7;
  line-height: 1.5;
}

code {
  background: #ECEFF1;
}

.faq__content {
  width: 50%;
}

.faq__title {
  margin-bottom: 20px;
}

.faq__desc {
  max-width: 400px;
}

.faq__cta {
  text-align: center;
  margin-top: 3rem;
}
.faq__cta a + a {
  margin-left: 1rem;
}

.praticals__list {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.praticals__list ul {
  list-style: initial !important;
  margin: 0px 0px;
}
.praticals__list ol {
  list-style: decimal !important;
}
.praticals__list li {
  line-height: 30px;
  position: relative;
}
.praticals__list em {
  font-style: normal;
  color: #0075C7;
}

.praticals__text {
  width: 50%;
  padding: 0px 0px;
}

.praticals__number {
  margin-right: 4rem;
  font-family: "Cormorant Garamond";
  font-weight: 200;
  font-size: 3.2rem;
}

.praticals__item {
  overflow: hidden;
  transition: height 300ms ease-in-out;
  margin-bottom: 0px;
  border-bottom: 1px solid rgba(1, 1, 1, 0.25);
}
.praticals__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.praticals__title, .praticals__content {
  padding: 1rem 0;
}
.praticals__title {
  display: flex;
  align-items: center;
  position: relative;
  list-style: none;
  outline: 0;
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 300ms ease-in-out;
  padding-left: 0;
  line-height: 1.4;
  padding-right: 5rem;
}
[open] > .praticals__title {
  color: #0075C7;
}
.praticals__title:hover {
  color: #0075C7;
}
.praticals__title::-webkit-details-marker {
  display: none;
}
.praticals__title:before, .praticals__title:after {
  content: "";
  position: absolute;
}
.praticals__title:before {
  right: 20px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 16px;
  background: #0075C7;
  border-radius: 5px;
}
.praticals__title:after {
  right: 27px;
  top: 50%;
  height: 16px;
  margin-top: -8px;
  width: 2px;
  margin-left: -1px;
  background: #0075C7;
  transition: all 300ms ease-in-out;
  border-radius: 5px;
}
[open] .praticals__title:after {
  opacity: 0;
  transform: translateY(25%);
}
.praticals__heading {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 300px;
}
.praticals__desc {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 300;
  margin: 20px 0px;
}
.praticals__content {
  padding-top: 0;
  max-width: 90%;
}
.praticals__content p + p {
  margin-top: 15px;
}
.praticals__cta {
  text-align: center;
  margin-top: 50px;
}
.praticals__cta + a {
  margin-left: 1rem;
}

@media (max-width: 1024px) {
  .faq__content {
    width: 100%;
    text-align: center;
  }

  .faq__desc {
    margin: 0 auto;
  }

  .praticals__list {
    width: 100%;
  }

  .praticals__text {
    width: 100%;
  }

  .faq__cta {
    text-align: left;
    margin-top: 1rem;
  }
  .faq__cta .btn {
    margin-left: 0;
    margin-top: 1rem;
  }

  .faq__title {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .praticals__text {
    padding: 0px 5%;
  }

  .praticals__title {
    font-size: 1.2rem;
  }

  .praticals__number {
    margin-right: 2rem;
  }

  .praticals__content {
    font-size: 13px;
    line-height: 1.6;
  }
}
.blog-intro__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.blog-intro__card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  cursor: pointer;
}
.blog-intro__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.blog-intro__card .blog-intro__price {
  position: absolute;
  top: 3.5rem;
  right: 0;
  background: #EBAC19;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 5px 0px 0px 5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 3;
}
.blog-intro__card .blog-intro__illustration {
  position: relative;
  border-radius: 20px 5px 20px 5px;
  margin-bottom: 2rem;
}
.blog-intro__card .blog-intro__illustration:before {
  content: "";
  padding-bottom: 60%;
  display: block;
}
.blog-intro__card .blog-intro__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.blog-intro__card .blog-intro__content .blog-intro__text .blog-intro__date {
  font-size: 1.2rem;
}
.blog-intro__card .blog-intro__content .blog-intro__text .blog-intro__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0075C7;
  margin-bottom: 0.75rem;
}
.blog-intro__card .blog-intro__content .blog-intro__text .blog-intro-infos {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  font-size: 1.4rem;
  color: #1B1B1B;
}
.blog-intro__card .blog-intro__content .blog-intro__text .blog-intro-infos li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.blog-intro__card .blog-intro__content .blog-intro__text .blog-intro-infos li::before {
  content: "•";
  color: #0075C7;
  font-weight: bold;
}
.blog-intro__card .blog-intro__content .blog-intro__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eee;
  margin-top: 1rem;
  padding-top: 1rem;
}
.blog-intro__card .blog-intro__content .blog-intro__author img {
  width: 6rem;
  height: 6rem;
  border-radius: 10px 2px 10px 2px;
  object-fit: cover;
}
.blog-intro__card .blog-intro__content .blog-intro__author .text .title {
  color: #0075C7;
  font-weight: 600;
  margin: 0;
}
.blog-intro__card .blog-intro__content .blog-intro__author .text .desc {
  font-size: 1.4rem;
  color: #1B1B1B;
  margin: 2px 0 0;
  line-height: 1.2;
}
.blog-intro__card .blog-intro__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
}

@media (max-width: 768px) {
  .blog-intro__card {
    margin: 2rem 1rem;
  }

  .blog-intro__list {
    margin-bottom: 4rem;
  }
}
.perks__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.perks__item {
  position: relative;
  border-radius: 7px;
}
.perks__item:before {
  content: "";
  position: absolute;
  z-index: 0;
  background-image: url("../img/perks-card-1.svg");
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.perks__item:nth-child(2):before {
  background-image: url("../img/perks-card-2.svg");
}
.perks__item:nth-child(3):before {
  background-image: url("../img/perks-card-3.svg");
}

.perks__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  padding: 4rem;
  z-index: 1;
}

.perks__icon {
  height: 4rem;
  width: auto;
}

.perks__title {
  font-size: 7rem;
  font-family: "Cormorant Garamond";
  color: #373D35;
  margin: 1rem 0;
  font-weight: 900;
}
.perks__title em {
  font-size: 3rem;
  font-style: normal;
}

.perks__text {
  font-size: 2.5rem;
  font-weight: 300;
  max-width: 200px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .perks__list {
    grid-template-columns: 1fr;
  }
}
.referral__block {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.referral__block + .referral__block {
  margin-top: 6rem;
}

.referral__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
}
.referral__content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 700px;
  line-height: 30px;
  color: #0075C7;
}
.referral__content h3, .referral__content h4, .referral__content h5, .referral__content h6 {
  margin-bottom: 1rem;
  color: #1B1B1B;
}
.referral__content h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
.referral__content h4 {
  color: #EBAC19;
  font-weight: 400;
  font-size: 16px;
}
.referral__content p {
  line-height: 1.5;
  font-size: 1.6rem;
  margin: 2rem 0;
  font-weight: 300;
}
.referral__content ul {
  margin-bottom: 20px;
}
.referral__content li {
  line-height: 1.7;
}
.referral__content li:before {
  margin-right: 5px;
  content: "-";
  font-size: 20px;
  color: #EBAC19;
}

@media (max-width: 1024px) {
  .referral__block {
    width: 100%;
    margin: 0px;
  }
  .referral__block + .seo__block {
    margin-top: 40px;
  }

  .referral__content h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.content__container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
}

.content {
  width: 50%;
  padding: 4rem 0;
  padding-right: 5%;
  text-align: center;
}
.content .heading {
  margin-bottom: 2rem;
}
.content p {
  font-size: 1.6rem;
}
.content p + p {
  margin-top: 2rem;
}

.content-stretch {
  max-width: 1000px !important;
  margin-left: 0 !important;
}

.content-gallery {
  width: 50%;
}

.content-gallery__title {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  color: #1B1B1B;
  display: none;
}

.content-gallery__list {
  height: 100%;
}

.content-gallery__item {
  position: relative;
  border-radius: 20px 5px;
  height: 100%;
}
.content-gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.content-image__illustration {
  position: relative;
  width: 60%;
  border-radius: 7px;
}
.content-image__illustration:before {
  content: "";
  padding-bottom: 60%;
  display: block;
}
.content-image__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* CONTENT-BLOCK */
.content-block__text {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.content-block__text p {
  font-size: 1.6rem;
}
.content-block__text p + p {
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .content-image__content {
    width: 100%;
  }

  .content-image__illustration {
    width: 100%;
    margin-top: 4rem;
  }

  .content__container {
    flex-direction: column;
  }

  .content {
    width: 100%;
  }

  .content-gallery {
    width: 100%;
  }

  .content-gallery__item {
    margin: 0 1rem;
  }
  .content-gallery__item::before {
    content: "";
    display: block;
    padding-bottom: 60%;
  }

  .content-gallery__title {
    display: block;
  }
}
#gallery {
  position: relative;
  height: 70rem;
  margin-top: 100px;
}

.gallery__list {
  height: 100%;
}

.gallery__item {
  position: relative;
  height: 100%;
}

.gallery__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 6rem;
  z-index: 2;
  background-color: rgba(1, 1, 1, 0.2);
}

.gallery__text {
  max-width: 800px;
  color: white;
  text-align: center;
}
.gallery__text .btn:hover {
  background-color: #fff;
  color: #0075C7;
  border: 1px solid white;
}

.gallery__head {
  font-weight: 900;
  text-transform: uppercase;
}

.gallery__title {
  font-family: "Cormorant Garamond";
  font-size: 11rem;
  line-height: 0.8;
  margin: 1rem 0;
}

.gallery__illustration {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.gallery__illustration img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-slider__arrows {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  color: white;
  z-index: 10;
}
.gallery-slider__arrows .slick-prev:before {
  background-image: url("../img/arrow-white.svg");
}
.gallery-slider__arrows .slick-next:before {
  background-image: url("../img/arrow-white.svg");
}

@media (max-width: 1024px) {
  .gallery__title {
    font-size: 12rem;
  }
}
@media (max-width: 768px) {
  #gallery {
    height: 50rem;
  }

  .gallery__head {
    font-size: 1.8rem;
  }

  .gallery__title {
    font-size: 6rem;
    line-height: 1;
  }
}
/* INTRO */
.packages-intro__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.packages-intro__item {
  position: relative;
  border-radius: 20px 5px 20px 5px;
}
.packages-intro__item:before {
  content: "";
  padding-bottom: 140%;
  display: block;
}
.packages-intro__item:hover .packages-intro__bg img {
  transform: scale(1.03);
}
.packages-intro__item:hover .packages-intro__content .title {
  color: #EBAC19;
}

.packages-intro__wrapper {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.packages-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px 5px 20px 5px;
  overflow: hidden;
}
.packages-intro__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 1;
  transition: all 1s ease-in-out 0s;
}
.packages-intro__bg:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  display: block;
  background: linear-gradient(180deg, rgba(12, 41, 61, 0) 0%, #0c293d 80%);
  z-index: 2;
  border-radius: 20px 5px 20px 5px;
  opacity: 0.5;
}

.packages-intro__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 3;
}
.packages-intro__content .title {
  font-size: clamp(2.5rem, 3vw, 4rem);
  font-weight: 700;
  transition: all 0.2s ease-in-out 0s;
}

.packages-intro__item.last-item .packages-intro__bg {
  background: linear-gradient(180deg, #8ec0ed -20%, #0075c7 100%);
}
.packages-intro__item.last-item .packages-intro__content {
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 1024px) {
  .packages-intro__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .packages-intro__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ideas__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.ideas__card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
}
.ideas__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.ideas__card .ideas__price {
  position: absolute;
  top: 3.5rem;
  right: 0;
  background: #EBAC19;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 5px 0px 0px 5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 3;
}
.ideas__card .ideas__illustration {
  position: relative;
  border-radius: 20px 5px 20px 5px;
  margin-bottom: 2rem;
}
.ideas__card .ideas__illustration:before {
  content: "";
  padding-bottom: 60%;
  display: block;
}
.ideas__card .ideas__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.ideas__card .ideas__content .ideas__text .ideas__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0075C7;
  margin-bottom: 0.75rem;
}
.ideas__card .ideas__content .ideas__text .ideas-infos {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  font-size: 1.4rem;
  color: #1B1B1B;
}
.ideas__card .ideas__content .ideas__text .ideas-infos li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ideas__card .ideas__content .ideas__text .ideas-infos li::before {
  content: "•";
  color: #0075C7;
  font-weight: bold;
}
.ideas__card .ideas__content .ideas__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eee;
  margin-top: 1rem;
  padding-top: 1rem;
}
.ideas__card .ideas__content .ideas__author img {
  width: 44px;
  height: 44px;
  border-radius: 10px 2px 10px 2px;
  object-fit: cover;
}
.ideas__card .ideas__content .ideas__author .text .title {
  color: #0075C7;
  font-weight: 600;
  margin: 0;
}
.ideas__card .ideas__content .ideas__author .text .desc {
  font-size: 1.4rem;
  color: #1B1B1B;
  margin: 2px 0 0;
}

@media (max-width: 768px) {
  .ideas__card {
    margin: 2rem 1rem;
  }

  .ideas__list {
    margin-bottom: 4rem;
  }
}
.locations__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.locations__illustration {
  position: relative;
  border-radius: 20px 5px;
  overflow: hidden;
  max-height: 30rem;
}
.locations__illustration:before {
  content: "";
  padding-bottom: 65%;
  display: block;
}
.locations__illustration:hover img {
  transform: scale(1.03);
}
.locations__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.2s ease-in-out 0s;
}
.locations__illustration .name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  opacity: 0.8;
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 34px;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.locations__illustration a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
}

.locations__content {
  padding: 3rem 2rem;
  text-align: center;
}

.locations__name {
  color: #0075C7;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.locations__subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

.locations__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* nombre de lignes max */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.locations__link {
  color: #1B1B1B;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 1px solid #1B1B1B;
  margin-top: 1rem;
  display: inline-block;
  transition: all 0.2s ease-in-out 0s;
}
.locations__link:hover {
  color: #0075C7;
  border-bottom: 1px solid #0075C7;
}

/* LOCATION INTRO */
.locations-intro__list {
  max-width: 800px;
  margin: 0 auto;
}

.locations-intro__item {
  display: block;
  color: #1B1B1B;
  font-size: 2rem;
  border-bottom: 1px solid #1B1B1B;
}
.locations-intro__item a {
  position: relative;
  color: #1B1B1B;
  display: block;
  padding: 1.5rem 0;
  font-weight: 400;
}
.locations-intro__item a:hover {
  color: #0075C7;
}
.locations-intro__item a:hover:after {
  opacity: 0.5;
}
.locations-intro__item a:after {
  content: "";
  display: block;
  height: 2rem;
  width: 4rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out 0s;
}

@media (max-width: 1024px) {
  .locations__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .locations__list {
    grid-template-columns: 1fr;
  }
}
.agencies {
  text-align: center;
}
.agencies .heading {
  width: 50%;
  text-align: left;
  padding: 4rem 0;
  padding-right: 5%;
}
.agencies__header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 4rem;
}
.agencies__map {
  position: relative;
  width: 50%;
  background: linear-gradient(180deg, rgba(250, 229, 136, 0.1) 0%, rgba(241, 202, 38, 0.2) 100%);
  border-radius: 15px 5px;
}
.agencies__map img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.agencies__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.agencies__item {
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
}
.agencies__illustration {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 5px 20px 5px;
}
.agencies__illustration:before {
  content: "";
  padding-bottom: 70%;
  display: block;
}
.agencies__illustration:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(190deg, rgba(1, 1, 1, 0) 50%, rgba(1, 1, 1, 0.6) 100%);
  z-index: 1;
}
.agencies__illustration:hover .agencies__button img {
  transform: rotate(90deg);
}
.agencies__illustration > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.agencies__button {
  position: absolute;
  top: 0;
  right: 0;
  background: #1B1B1B;
  border-radius: 5px;
  width: 4.6rem;
  height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agencies__button img {
  width: 3.4rem;
  height: 3.4rem;
  transition: all 0.3s ease-in-out 0s;
}
.agencies__link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.agencies__title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  text-align: left;
  z-index: 2;
}
.agencies__title span {
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
}
.agencies__title .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.3rem 0 0;
}
.agencies__content {
  padding: 1rem 0;
}
.agencies__content .links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.agencies__content .links li button {
  display: block;
  text-align: center;
  padding: 0.6rem 0;
  border-radius: 10px 2px;
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  box-shadow: none;
  width: 100%;
  cursor: pointer;
}
.agencies__content .links li button:hover {
  opacity: 0.7;
}
.agencies__content .links li:nth-child(1) button {
  background: #000;
  color: #fff;
}
.agencies__content .links li:nth-child(2) button {
  background: #0075C7;
  color: #fff;
}
.agencies__content .links li:nth-child(3) button {
  background: #8EC0ED;
  color: white;
}
.agencies__content .links li:nth-child(4) button {
  background: #EBAC19;
  color: #fff;
}

.agencies-intro {
  text-align: center;
}
.agencies-intro .heading {
  width: 50%;
  text-align: left;
  padding: 4rem 0;
  padding-right: 5%;
}
.agencies-intro__header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 4rem;
}
.agencies-intro__map {
  position: relative;
  width: 50%;
}
.agencies-intro__map img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.agencies-intro__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.agencies-intro__item {
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
}
.agencies-intro__item:hover .agency-intro__button img {
  transform: rotate(90deg);
}
.agencies-intro__illustration {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 5px 20px 5px;
}
.agencies-intro__illustration:before {
  content: "";
  padding-bottom: 70%;
  display: block;
}
.agencies-intro__illustration:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(190deg, rgba(1, 1, 1, 0) 50%, rgba(1, 1, 1, 0.6) 100%);
  z-index: 1;
}
.agencies-intro__illustration > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.agencies-intro__button {
  position: absolute;
  top: 0;
  right: 0;
  background: #1B1B1B;
  border-radius: 5px;
  width: 4.6rem;
  height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.agencies-intro__button img {
  width: 3.4rem;
  height: 3.4rem;
  transition: all 0.3s ease-in-out 0s;
}
.agencies-intro__button:hover img {
  transform: rotate(90deg);
}
.agencies-intro__title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  text-align: left;
  z-index: 2;
}
.agencies-intro__title span {
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
}
.agencies-intro__title .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.3rem 0 0;
}
.agencies-intro__content {
  padding: 1rem 0;
}
.agencies-intro__content .links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.agencies-intro__content .links li button {
  display: block;
  text-align: center;
  padding: 0.6rem 0;
  border-radius: 10px 2px;
  font-weight: 400;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  border: none;
  box-shadow: none;
}
.agencies-intro__content .links li button:hover {
  opacity: 0.7;
}
.agencies-intro__content .links li:nth-child(1) button {
  background: #000;
  color: #fff;
}
.agencies-intro__content .links li:nth-child(2) button {
  background: #0075C7;
  color: #fff;
}
.agencies-intro__content .links li:nth-child(3) button {
  background: #8EC0ED;
  color: white;
}
.agencies-intro__content .links li:nth-child(4) button {
  background: #EBAC19;
  color: #fff;
}

.agency-intro__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 768px) {
  .agencies-intro .heading,
.agencies .heading {
    width: 100%;
    margin-bottom: 0;
  }

  .agencies-intro__map,
.agencies__map {
    width: 100%;
    height: 27rem;
  }

  .agencies-intro__list,
.agencies__list {
    margin-bottom: 4rem;
  }
  .agencies-intro__list .slick-dots,
.agencies__list .slick-dots {
    bottom: -3.5rem;
  }
  .agencies-intro__list .slick-dots .slick-active button,
.agencies__list .slick-dots .slick-active button {
    content: "";
    background-image: url("../img/icon-plane.svg");
    height: 20px;
    width: 20px;
    border-radius: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .agencies-intro__list .slick-dots button,
.agencies__list .slick-dots button {
    width: 8px;
    height: 8px;
  }
}
.trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.trust__item {
  text-align: center;
}

.trust__content img {
  height: 5rem;
  width: auto;
  object-fit: contain;
}

.trust__title {
  font-size: 3rem;
  color: #0075C7;
  font-weight: 700;
  padding: 1rem 0;
}

.trust__desc {
  font-size: 1.6rem;
  line-height: 23px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .trust__list {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
#newsletter .container {
  position: relative;
  padding: 10rem 0;
  border-radius: 20px 5px;
  width: 95%;
}
#newsletter .container .heading {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px 5px;
}
.newsletter__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.newsletter__bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(185deg, rgba(1, 1, 1, 0) 20%, rgba(1, 1, 1, 0.6) 100%);
  z-index: 1;
  border-radius: 20px 5px;
}

#page-header {
  position: relative;
  height: 30rem;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.page-header__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.page-header__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 6rem 0;
}

.page-header__title {
  position: absolute;
  bottom: 0rem;
  left: 1rem;
  font-size: clamp(16px, 10vw, 8rem);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.8;
  line-height: 0.7;
}

.page-header__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-left: auto;
  margin-bottom: 2rem;
}

.page-header__item {
  display: flex;
  align-items: stretch;
}
.page-header__item img {
  background-color: #1B1B1B;
  padding: 0 1.5rem;
  border-radius: 20px 0px 0px 5px;
}
.page-header__item .text {
  background: linear-gradient(180deg, #8ec0ed -20%, #0075c7 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0px 5px 20px 0px;
}

@media (max-width: 768px) {
  .page-header__title {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
}
.banner__content {
  position: relative;
  background: linear-gradient(180deg, #8ec0ed -20%, #0075c7 100%);
  padding: 4rem 2rem;
  border-radius: 20px 5px;
  text-align: center;
}

.banner__title {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}

.banner__desc {
  font-size: 1.6rem;
  color: #fff;
  line-height: 23px;
  margin: 1rem 0;
}

#breadcrumbs p {
  font-size: 1.1rem;
  font-weight: 300;
}

#reviews .wp-gr .wp-google-powered {
  font-size: 0 !important;
}
#reviews .wp-gr .wp-google-powered span {
  display: inline-block;
  font-size: 18px !important;
}
#reviews .wp-gr .grw-review-inner {
  background-color: #F8F7F4 !important;
  border-radius: 15px 5px !important;
  padding: 2rem !important;
}
#reviews .wp-gr .rpi-dots {
  display: flex;
  align-items: center;
}
#reviews .wp-gr .rpi-dot {
  background-color: #707070 !important;
  cursor: pointer;
  border: 1px solid #707070;
  text-indent: -999999px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  opacity: 0.3 !important;
}
#reviews .wp-gr .rpi-dot.active {
  content: "";
  background-image: url("../img/icon-plane.svg") !important;
  height: 20px !important;
  width: 20px !important;
  border-radius: 0px !important;
  background-size: contain;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: transparent !important;
  border: none;
  opacity: 1 !important;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

#breadcrumbs {
  padding: 2rem 0 3rem;
}
#breadcrumbs + .section {
  padding-top: 0;
}

.section {
  position: relative;
  padding-top: 10rem;
}
.section:last-child {
  padding-bottom: 10rem;
}
.section + .section {
  padding-top: 10rem;
}
.section + .section--light {
  margin-top: 10rem;
}
.section + .section--grey {
  margin-top: 10rem;
}
.section--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section--columns {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}
.section--light {
  background: linear-gradient(180deg, rgba(250, 229, 136, 0.1) 0%, rgba(241, 202, 38, 0.2) 100%);
  padding-bottom: 10rem;
}
.section--grey {
  background-color: #F3F2EE;
  padding-bottom: 10rem;
}
.section--grey-gradient {
  position: relative;
  padding-bottom: 10rem;
}
.section--grey-gradient:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 80%;
  width: 100%;
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 0%, #F3F2EE 100%);
}
.section--gradient {
  background: #1B1B1B;
  padding-bottom: 10rem;
}
.section--gradient:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../img/projects-slider-after.png");
  background-size: cover;
  width: 80%;
  height: 100%;
  z-index: 0;
}
.section--secondary {
  background: linear-gradient(180deg, #8ec0ed -20%, #0075c7 100%);
  color: #fff;
}
.section--secondary:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  opacity: 0.05;
  background-size: 50%;
  background-repeat: repeat;
  background-image: url("../img/pattern-bg.png");
  z-index: 1;
}

.wrapper {
  width: calc(1380/1680 * 100%);
}
.wrapper--centered {
  margin-left: auto;
  margin-right: auto;
}
.wrapper--accent {
  background-color: #F3F2EE;
  padding-left: calc(150/1680 * 100%);
  padding-right: calc(150/1680 * 100%);
}
.wrapper--white {
  background-color: #fff;
  padding-left: calc(150/1680 * 100%);
  padding-right: calc(150/1680 * 100%);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.column {
  display: flex;
  flex-wrap: wrap;
}
.column--free {
  display: flex;
}
.column--spaced {
  justify-content: space-between;
}
.column--centered {
  align-items: center;
}
.column--reversed {
  flex-direction: row-reverse;
}
.column--equal {
  align-items: stretch;
}
.column--centered-w {
  justify-content: center;
}
.column--half {
  width: 45%;
}
.column--third {
  width: 30%;
}
.column--fourth {
  width: 23%;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 2;
}
.container--stretch {
  max-width: 1000px;
}

.list--inline li {
  display: inline-block;
}

.breadcrumbs {
  margin-top: 50px;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}
/* FORM */
.form__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1B1B1B;
  margin-bottom: 2rem;
}

#gform_confirmation_message_1 {
  margin-bottom: 40px;
}

.gform_heading {
  display: none !important;
}

#gform .gform_fields {
  gap: 1rem;
}

#gform .gfield {
  position: relative;
}

#gform .gform-field-label {
  color: #1B1B1B;
  opacity: 1;
  font-size: 1.4rem;
  font-weight: 500;
}

#gform .gfield_label {
  color: #1B1B1B;
  opacity: 1;
  font-size: 1.6rem;
  font-weight: 400;
  position: absolute;
  padding: 0 1rem;
  left: 2rem;
  background-color: white;
}

#gform input {
  width: 100%;
  border: 1px solid #7B7971;
  padding: 2.5rem 1.5rem !important;
  font-family: "Inter", sans-serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #fff;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.6rem;
  color: #000;
  border-radius: 15px 5px;
}
#gform input::placeholder {
  color: #1B1B1B;
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.5rem;
}

#gform textarea {
  width: 100%;
  border: 1px solid #7B7971;
  padding: 1rem;
  font-family: "Inter", sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #fff;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.2rem;
  color: #000;
  border-radius: 15px 5px;
}
#gform textarea::placeholder {
  color: #1B1B1B;
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.5rem;
}

#gform .gfield-choice-input {
  width: auto;
  border: inherit;
  padding: 0;
  margin: 0;
  background-color: initial;
  cursor: default;
  appearance: auto;
  box-sizing: border-box;
  margin: 3px 3px 0px 5px;
  padding: initial;
  border: initial;
}

#gform .gform_button {
  width: auto;
  border: 1px solid #0075C7;
  color: #fff;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.2s ease-in-out 0s;
  background: #0075C7;
  font-family: "Inter", sans-serif;
  padding: 1.2rem 4rem !important;
  display: block;
  cursor: pointer;
  border-radius: 15px 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#gform .gform_button:hover {
  background-color: #8EC0ED;
  color: #fff;
  border: 1px solid #8EC0ED;
}

#gform .ginput_container_radio {
  padding: 1rem 0;
}
#gform .ginput_container_radio .gfield_radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
}
#gform .ginput_container_radio .gchoice {
  align-items: center;
  display: flex;
}
#gform .ginput_container_radio input {
  border-radius: 2px;
  cursor: pointer;
}
#gform .ginput_container_radio input:before {
  background-color: #0075C7 !important;
}
#gform .ginput_container_radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #555;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  vertical-align: middle;
  padding: 0 !important;
}
#gform .ginput_container_radio input[type=radio]:checked {
  background-color: #EBAC19;
  border-color: #EBAC19;
}
#gform .ginput_container_radio input[type=radio]:focus {
  outline: 2px solid #EBAC19;
  outline-offset: 2px;
}
#gform .ginput_container_radio label {
  font-size: 1.6rem;
  font-weight: 400;
  cursor: pointer;
}

#gform #field_1_6 .gfield_label {
  position: relative;
  left: 0;
  padding-top: 1rem;
}

#input_1_10 {
  display: block;
  width: 100%;
  margin: 10px 0px;
}

#input_1_10 label {
  max-width: 100%;
}

#input_1_10.gchoice {
  display: inline-block;
  margin-left: 20px;
}

.gform_heading {
  display: none;
}

.gchoice {
  display: inline-block;
  margin-left: 20px;
}

.gchoice:first-child {
  margin-left: 0px;
}

.footer {
  background: linear-gradient(180deg, #8ec0ed -20%, #0075c7 100%);
  position: relative;
  padding: 6rem 0 3rem;
}

.footer__title {
  color: #1B1B1B;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

a.footer__title:hover {
  color: #EBAC19;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  z-index: 1;
  padding-bottom: 6rem;
}

.footer__logo {
  display: block;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  height: 6rem;
}

.footer__part {
  position: relative;
  text-align: left;
  margin: 2rem auto;
}
.footer__part--logo {
  grid-column: span 4;
}

.footer__text {
  color: white;
}
.footer__text h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__text p {
  color: #BCBCBC;
  font-weight: 300;
}

/* MENU FOOTER */
.footer__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  column-gap: 4rem;
  row-gap: 1.5rem;
  margin-top: 2rem;
}
.footer__menu a {
  color: #fff;
  font-size: 1.4rem;
}
.footer__menu a:hover {
  opacity: 0.5;
}

/* NEWSLETTER */
.footer-newsletter {
  margin-bottom: 6rem;
  max-width: 1000px;
}

.footer-newsletter__content {
  border: 1px solid #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-newsletter__title {
  font-size: 2.1rem;
  color: #fff;
  font-weight: 700;
}

.footer-newsletter__desc {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  margin-top: 1rem;
}

.news-form {
  margin: 0 auto;
}
.news-form #gform_2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.news-form#gform .gfield_label {
  display: none !important;
}
.news-form#gform input {
  padding: 2rem 1.5rem !important;
  border-radius: 20px 0px 0px 5px;
  border: none;
  text-align: left;
}
.news-form#gform input::placeholder {
  opacity: 1;
  font-size: 1.6rem;
}
.news-form#gform .gform_button {
  position: relative;
  background-color: #EBAC19 !important;
  border-radius: 0 5px 20px 0 !important;
  border: none;
  width: 4.5rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: -9999px;
  background-image: url("../img/icon-send.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 4rem 2rem !important;
}
.news-form#gform .gform_button:hover {
  background-color: #0075C7 !important;
}
.news-form#gform .gform-footer {
  margin-top: 0 !important;
}

/* SOCIAL */
.footer-social {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 2rem 0rem;
}
.footer-social a:hover {
  opacity: 0.7;
}
.footer-social a + a {
  margin-left: 2rem;
}
.footer-social img {
  height: 3rem;
  width: auto;
}

/* COPYRIGHT */
.footer__copyright {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.footer__copyright p {
  font-size: 1.5rem;
  opacity: 1;
}
.footer__copyright p a {
  color: #fff;
  font-weight: 700;
  opacity: 1;
}
.footer__copyright a {
  color: #fff;
  font-size: 1.5rem;
  opacity: 1;
}
.footer__copyright a:hover {
  color: white;
  opacity: 0.5;
}

.footer__copyright {
  text-align: center;
  margin: 0 auto;
}
.footer__copyright > * {
  position: relative;
  margin-left: 1rem;
  padding-left: 1rem;
}
.footer__copyright > *:first-child:before {
  display: none;
  padding-left: 0;
}
.footer__copyright > *:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  height: 60%;
  width: 1px;
  background-color: #EBAC19;
}

@media (max-width: 1024px) {
  .footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__part:first-child {
    grid-column: span 3;
    text-align: center;
    margin: 0 auto 0rem;
  }
}
@media (max-width: 768px) {
  .footer__top {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  .footer__part {
    max-width: 100%;
    width: 100%;
    margin-bottom: 4rem;
  }

  .footer__copyright > * {
    width: 100%;
    margin: 5px 0px;
    margin-left: 0;
    text-align: left;
    padding-left: 0;
    line-height: 1.4;
    flex-direction: column;
  }
  .footer__copyright > *:before {
    display: none;
  }

  .footer__menu {
    column-gap: 0rem;
  }

  .menu--footer > ul {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: row;
    column-gap: 1rem;
  }

  .menu--footer li {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
  .menu--footer li:last-child {
    margin-bottom: 0px;
  }

  .footer__contact li {
    justify-content: center;
  }

  .footer__copyright > *:before {
    display: none;
  }
}
.slick-track,
.slick-list {
  height: 100%;
  width: 100%;
}

.slick-arrow {
  display: inline-block !important;
  transition: all 0.2s ease-in-out 0s;
}
.slick-arrow:hover {
  opacity: 0.5;
}

.slick-next {
  position: relative;
  width: 5rem;
  height: 2rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  color: transparent;
  background: transparent;
  outline: none;
}
.slick-next:before {
  content: "";
  background-image: url("../img/arrow-black.svg");
  height: 2rem;
  width: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
}

.slick-prev {
  position: relative;
  z-index: 10;
  width: 5rem;
  height: 2rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  color: transparent;
  background: transparent;
  outline: none;
}
.slick-prev:before {
  content: "";
  background-image: url("../img/arrow-black.svg");
  height: 2rem;
  width: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  transform: rotate(180deg);
}

.slick-dots {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li + li {
  margin-left: 10px;
  margin-top: 0;
}
.slick-dots button {
  background-color: #707070;
  cursor: pointer;
  border: 1px solid #707070;
  text-indent: -999999px;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
}
.slick-dots button:focus {
  outline: none;
}
.slick-dots .slick-active button {
  content: "";
  background-image: url("../img/icon-plane.svg");
  height: 20px;
  width: 20px;
  border-radius: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  border: none;
  opacity: 1;
}

.menu {
  position: relative;
  width: 100%;
  z-index: 99;
  background-color: white;
  border-bottom: 1px solid #ececec;
}

.menu--container {
  padding: 1rem calc(100/1680 * 100%);
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.2);
}

.menu--header {
  margin-left: auto;
  transition: all 0.2s ease-in-out;
}

.menu--logo {
  height: 100%;
  width: 220px;
}
.menu--logo img {
  text-align: center;
  object-fit: contain;
  margin-right: auto;
}

.menu--button {
  margin-left: 2rem;
}

.menu--button a {
  color: #fff !important;
  background-color: #373D35;
  border: 1px solid #373D35;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 3px;
  margin-top: 0;
  padding: 0.8rem 1.4rem;
  border-radius: 7px;
}
.menu--button a:hover {
  border: 1px solid #EBAC19;
  color: #EBAC19;
  background-color: transparent;
}
.menu--button a a {
  font-weight: 600 !important;
}

.menu__list {
  width: 100%;
  display: inline-block;
}
.menu__list li {
  position: relative;
  display: inline-block;
}
.menu__list li + li {
  margin-left: 25px;
}
.menu__list a {
  display: block;
  color: #707070;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1.4px;
  font-size: 1.4rem;
}
.menu__list a:hover, .menu__list a:active, .menu__list a.active {
  color: #EBAC19;
}

.menu__list .menu--button.current-menu-item a:before {
  display: none;
}

.unclickable > a {
  pointer-events: none !important;
}

.nav-primary {
  width: 100%;
}

.nav-secondary {
  display: none;
  width: 100%;
  margin: 4rem;
}
.nav-secondary h2 {
  font-weight: 700;
  font-size: 2.6rem;
  color: #0075C7;
  text-align: right;
}
.nav-secondary .menu__list {
  gap: 1rem !important;
  margin-top: 2rem;
}
.nav-secondary ul li a {
  font-size: 1.6rem;
  font-weight: 400;
}

/* MOBILE MENU */
.button--mobile {
  display: none;
}

/* MENU BURGER */
.menu--burger {
  position: relative;
  text-align: right;
  display: none;
  cursor: pointer;
  padding-left: 2rem;
}

.menu--burger div {
  width: 6px;
  height: 6px;
  margin: 5px;
  border-radius: 50%;
  background: #1B1B1B;
  transition: all 0.2s ease-in;
  border-radius: 10px;
}

.menu--burger.active div {
  background: #0075C7;
}

.menu--burger.active .line1 {
  background: #0075C7;
  transform: translateX(10px) translateY(11px);
}

.menu--burger.active .line2 {
  background: #0075C7;
}

.menu--burger.active .line3 {
  transform: translateX(-10px) translateY(-11px);
}

.action--close {
  position: fixed;
  z-index: 100;
  top: 40px;
  right: 20px;
}

/* MENU MOBILE */
.menu--mobile {
  display: none;
  flex-direction: row;
  margin-right: 1rem;
}

.button-mobile {
  background-color: #0075C7;
  padding: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px 5px;
}
.button-mobile img {
  height: 2rem;
  width: 2rem;
}
.button-mobile:hover {
  opacity: 0.7;
}
.button-mobile:nth-child(2) {
  margin-left: 1rem;
  background-color: #EBAC19;
}

@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateY(50px) translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
@media (max-width: 1100px) {
  .menu--container {
    padding: 10px calc(150/1680 * 100%);
  }

  .menu--mobile {
    display: flex;
    margin-left: auto;
  }

  .nav-secondary {
    display: block;
  }

  .menu--header {
    transform: translate(-4rem);
    position: fixed;
    top: 6.1rem;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: #fff;
    padding: 80px calc(150/1680 * 100%) 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 6.1rem);
    z-index: 99;
    pointer-events: none;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .menu--header.active {
    opacity: 1;
    transform: translate(0);
    pointer-events: all;
  }

  .menu--header .menu__list {
    height: 100%;
    max-height: calc(100vh - 6.1rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .menu__list a {
    color: #1B1B1B;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: none;
    font-weight: 700;
    letter-spacing: normal;
  }

  .menu--header .menu__list > li {
    display: flex;
    justify-content: end;
  }
  .menu--header .menu__list > li a {
    display: inline-flex;
  }

  .menu--burger {
    display: block;
  }

  .menu__list .menu-item-has-children {
    padding-right: 0;
  }
  .menu__list .menu-item-has-children:after {
    display: none;
  }
  .menu__list .menu-item-has-children .sub-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 1;
    gap: 1rem;
    visibility: visible;
    position: relative;
    transform: none;
    min-width: auto;
    left: auto;
    top: 0;
    margin-top: 0;
  }
  .menu__list .menu-item-has-children .sub-menu li {
    display: block;
    padding: 0;
  }
  .menu__list .menu-item-has-children .sub-menu li a {
    font-weight: 400;
    color: #1B1B1B;
    font-size: 14px;
  }

  .menu__list .current-menu-item a:before {
    bottom: 15px;
    right: 0;
    left: auto;
    width: 50px;
  }
}
@media (max-width: 1024px) {
  .menu--logo {
    width: 120px;
  }
  .menu--logo a {
    display: block;
    width: 100%;
  }
  .menu--logo img {
    width: 100%;
  }

  .burger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .menu--button {
    margin-left: 0;
  }
  .menu--button a {
    font-size: 9px;
  }

  .top-bar__title {
    font-size: 1.4rem;
  }
}
@media (max-width: 550px) {
  .menu--container {
    padding: 10px calc(100/1680 * 100%);
  }

  .menu--logo {
    width: 180px;
  }

  .menu-logo {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .menu--button a {
    font-size: 8px;
  }

  .menu__list a {
    font-size: 18px;
    font-weight: 600;
  }
}
.searchandfilter {
  margin-bottom: 2rem;
}
.searchandfilter ul {
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.searchandfilter .sf-field-reset {
  grid-column: span 3;
  background-color: transparent;
}
.searchandfilter .sf-field-reset a {
  color: #1B1B1B;
  cursor: pointer;
}
.searchandfilter li {
  background-color: #F3F2EE;
  border-radius: 7px;
  padding: 0.5rem !important;
}
.searchandfilter li.sf-field-post-meta-localite label:before {
  background-image: url("../img/filter-location.svg");
}
.searchandfilter li.sf-field-taxonomy-type label:before {
  background-image: url("../img/filter-type.svg");
}
.searchandfilter li.sf-field-post-meta-surface label:before {
  background-image: url("../img/filter-surface.svg");
}
.searchandfilter li.sf-field-post-meta-rooms label:before {
  background-image: url("../img/filter-bed.svg");
}
.searchandfilter li.sf-field-post-meta-exterior label:before {
  background-image: url("../img/filter-exterior.svg");
}
.searchandfilter li.sf-field-post-meta-price label:before {
  background-image: url("../img/filter-price.svg");
}
.searchandfilter label {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.searchandfilter label:before {
  content: "";
  display: inline-block;
  height: 4rem;
  width: 5rem;
  background-color: #1B1B1B;
  border-radius: 7px;
  margin-right: 1rem;
  background-image: url("../img/filter-exterior.svg");
  background-size: 2.5rem 2.5rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.searchandfilter select {
  border: none;
  width: 100%;
  background-color: transparent;
}
.pagination__container {
  position: relative;
  width: 100%;
  grid-column: span 3;
  text-align: center;
}

.pagination {
  clear: both;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  position: relative;
  font-size: 14px;
  line-height: 13px;
  margin-top: 20px;
  margin: 0 auto;
  text-align: center;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #493c36;
}

.pagination a:hover {
  background-color: #EBAC19;
  color: #fff;
}

.pagination .current {
  background-color: #EBAC19;
  color: #fff;
}

@media (max-width: 1024px) {
  .searchandfilter {
    margin-bottom: 2rem;
  }
  .searchandfilter ul {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .searchandfilter .sf-field-reset {
    grid-column: span 3;
  }
}
@media (max-width: 768px) {
  .searchandfilter {
    margin-bottom: 2rem;
  }
  .searchandfilter ul {
    gap: 1rem;
    display: grid;
    grid-template-columns: 1fr;
  }

  .searchandfilter .sf-field-reset {
    grid-column: span 1;
  }

  .searchandfilter label:before {
    height: 3rem;
    width: 3rem;
    background-size: 1.5rem 1.5rem;
  }
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
}

.google-rating-badge .grb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: #fff;
  /* blanc pour texte */
}

.google-rating-badge .grb__value {
  font-size: 2rem;
  font-weight: 700;
}

.google-rating-badge .grb__star {
  font-size: 2rem;
  color: #fbbc05;
  /* jaune Google */
}

.google-rating-badge .grb__logo {
  font-size: 2rem;
  font-weight: 700;
  /* si tu utilises juste "G" stylisé, tu peux jouer sur la font-family ou remplacer par un <img> */
}

/* RATING */
.grp-rating {
  font-size: 17px;
  margin-bottom: 1rem;
}

.grp-stars {
  font-size: 1.6rem;
  margin: 0rem 0.5rem;
}

.grp-star {
  color: #FBB004;
}

.grp-star--empty {
  opacity: 0.35;
}

.grp-link {
  color: inherit;
  font-weight: 700;
}

.grp-google-logo {
  display: inline-block;
  vertical-align: middle;
  height: 25px;
  margin-top: 3px;
  width: auto;
}

.grp-rating {
  display: inline-flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.grp-rating__line,
.grp-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: #000;
}

.grp-rating__value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.grp-rating__stars .grp-stars {
  font-size: 22px;
  line-height: 1;
}

.grp-stars {
  display: inline-block;
  letter-spacing: 2px;
}

.grp-star--empty {
  opacity: 0.2;
}

.grp-star--half {
  position: relative;
  display: inline-block;
  color: rgba(251, 188, 5, 0.3);
  /* jaune pâle sur toute l’étoile */
}

.grp-star--half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #fbbc05;
  /* jaune plein sur la moitié gauche */
}

.grp-rating__google {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.grp-google-logo {
  height: 22px;
  width: auto;
  display: inline-block;
}

.contact-header {
  position: relative;
  margin-bottom: 4rem;
}

.contact-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 12px;
}
.contact-header__bg img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.contact-header__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(220deg, rgba(1, 1, 1, 0) 40%, rgba(1, 1, 1, 0.6) 100%);
}

.contact-header__content {
  position: relative;
  z-index: 2;
  padding: 4% 4rem;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  padding-top: 16rem;
}

.contact-header__text {
  max-width: 40%;
}

.contact-header__perks {
  display: flex;
  flex-direction: column;
}
.contact-header__perks span {
  background-image: url("../img/contact-perks-bg.png");
  background-size: cover;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  text-align: center;
  border-radius: 7px;
}
.contact-header__perks span + span {
  margin-top: 1rem;
}

.contact-header__rating .wp-gr {
  padding-bottom: 0 !important;
}
.contact-header__rating .wp-gr .wp-google-rating {
  color: #fff !important;
  font-weight: 300 !important;
  font-size: 1.6rem !important;
}
.contact-header__rating .wp-gr .wp-google-powered {
  color: #fff !important;
  margin-left: 2rem !important;
}
.contact-header__rating .wp-gr .wp-google-stars .wp-star svg {
  height: 15px !important;
  width: 15px !important;
}
.contact-header__rating .wp-gr .wp-google-stars .wp-star svg path {
  fill: #FBB004 !important;
}
.contact-header__rating .wp-gr .wp-google-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}

/* CONTENT */
.contact__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form {
  width: 45%;
  border-radius: 12px;
  padding: 4rem;
  max-width: 650px;
}

.contact-sidebar {
  width: 50%;
}

/* PROCESS */
.contact-process {
  text-align: center;
  background-color: #F3F2EE;
  border-radius: 15px 5px 0px 0px;
}

.contact-process__content {
  padding: 6rem 4rem;
}

.contact-process__title {
  font-weight: 700;
  font-size: 3rem;
  max-width: 500px;
  color: #0075C7;
}

.contact-process__desc {
  font-size: 1.6rem;
  margin-top: 1rem;
}

.contact-process__list {
  display: flex;
  flex-direction: column;
}

.contact-process__item {
  text-align: center;
}
.contact-process__item .title {
  margin-top: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 29px;
  color: #0075C7;
}
.contact-process__item .text {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 300;
}

.contact-process__illustration {
  position: relative;
  height: 30rem;
  border-radius: 0px 0px 15px 5px;
}
.contact-process__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@media (max-width: 1024px) {
  .contact__container {
    flex-direction: column;
  }

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

  .contact-sidebar {
    width: 100%;
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  .contact-header__content {
    padding: 2rem;
    flex-direction: column;
    align-items: baseline;
  }

  .contact-header__text {
    max-width: 100%;
  }

  .contact-header__perks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }
  .contact-header__perks span + span {
    margin-top: 0;
  }

  .contact-header__bg:after {
    background: rgba(1, 1, 1, 0.6);
  }

  .contact-process__list {
    grid-template-columns: 1fr;
  }

  .contact-phone__header {
    flex-direction: column;
    text-align: center;
  }
  .contact-phone__header .btn {
    margin: 2rem auto 0;
  }

  .contact-phone__content {
    flex-direction: column;
  }

  .contact-phone__text {
    padding-left: 0;
    text-align: center;
    margin-top: 2rem;
  }

  .contact-header__rating .wp-gr .wp-google-right {
    flex-direction: column !important;
    width: 100% !important;
    align-items: baseline !important;
  }

  .contact-header__rating .wp-gr .wp-google-powered {
    margin-left: 0 !important;
  }

  #contact .heading__title {
    font-size: 2.4rem;
  }
}
.blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog__card {
  position: relative;
  background-color: #F3F2EE;
  border-radius: 12px;
  transition: all 0.2s ease-in-out 0s;
}
.blog__card:hover {
  transform: translateY(-5px);
}
.blog__card:before {
  content: "";
  padding-bottom: 80%;
  display: block;
}

.blog__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  z-index: 1;
  border-radius: 12px;
  background: linear-gradient(190deg, rgba(1, 1, 1, 0) 30%, rgba(1, 1, 1, 0.6) 100%);
}

.blog__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  z-index: 1;
  padding: 1.5rem 3rem;
  color: #fff;
  flex-direction: column;
}

.blog__title {
  font-weight: 700;
  font-size: 2rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.blog__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1.2;
  width: 100%;
  justify-content: start;
}
.blog__author img {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  margin-right: 1rem;
}
.blog__author .date {
  font-size: 1.2rem;
}
.blog__author .name {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.blog__author .function {
  font-size: 1.2rem;
}

.blog__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  z-index: 0;
}
.blog__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.blog__cta {
  text-align: center;
  margin-top: 2rem;
}

/* PAGINATION */
.blog__pagination {
  margin-top: 4rem;
  display: block;
  text-align: center;
}

.blog__pagination .page-numbers {
  color: #1B1B1B;
  margin: 0 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
}
.blog__pagination .page-numbers:hover {
  background-color: #F3F2EE;
}
.blog__pagination .page-numbers.current {
  background-color: #1B1B1B;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .blog__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .blog__list {
    grid-template-columns: 1fr;
  }
}
#post {
  margin-inline: auto;
  padding-bottom: 100px;
}

/* HEADER */
.post-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.post-header__top {
  max-width: 90rem;
  width: 40%;
}

.post-header__infos {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid rgba(1, 1, 1, 0.2);
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  opacity: 0.7;
}
.post-header__infos img {
  height: 1rem;
  margin: 0 1rem;
}
.post-header__infos > * {
  font-size: 1.4rem;
}

.post-header__back {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
}

.post-header__text {
  margin: 2rem 0 5rem;
}

.post-header__title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.post-header__desc {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

.post-header__illustration {
  position: relative;
  height: 50rem;
  width: calc(60% - 10rem);
  border-radius: 10px;
}
.post-header__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* TABLE */
.post-table {
  position: relative;
  background-color: #F3F2EE;
  padding: 3rem;
  border-radius: 12px;
}
.post-table h2 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}
.post-table li {
  border-bottom: 1px solid rgba(1, 1, 1, 0.6);
  padding: 1rem 0;
}
.post-table a {
  transition: all 0.2s ease-in-out 0s;
  display: inline-block;
}
.post-table a:hover {
  transform: translateX(5px);
}

/* CONTENT */
.post-content {
  position: relative;
  display: grid;
  grid-template-columns: auto 28%;
  gap: 6rem;
  margin-top: 6rem;
}

.post-text {
  max-width: 100%;
  margin: 0 auto;
}
.post-text h1,
.post-text h2,
.post-text h3,
.post-text h4,
.post-text h5 {
  margin-bottom: 4rem;
  margin-top: 2rem;
}
.post-text h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #1B1B1B;
}
.post-text h3 {
  font-size: 1.8rem;
  margin: 1rem 0px;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #1B1B1B;
}
.post-text p {
  font-size: 1.6rem;
  margin: 2rem 0;
  font-weight: 300;
  line-height: 1.7;
  color: #707070;
}
.post-text ul {
  margin-left: 30px;
  list-style: disc !important;
}
.post-text ol {
  margin-left: 30px;
}
.post-text li {
  position: relative;
  margin: 10px 0px;
  padding-left: 15px;
  line-height: 1.7;
  font-weight: 300;
  font-size: 1.5rem;
  color: #707070;
}
.post-text img {
  margin: 40px 0px;
}

.post li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "-";
  font-size: 14px;
  color: #0075C7;
}

/* AUTHOR */
.post-author {
  border: 1px solid rgba(1, 1, 1, 0.3);
  border-radius: 12px;
  padding: 2rem 4rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.post-author .title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.post-author--mobile {
  display: none;
  margin-top: 6rem;
}

.post-author .author {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
  padding-bottom: 0;
}
.post-author .author img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}
.post-author .author .name {
  font-weight: 600;
  color: #1B1B1B;
  font-size: 1.6rem;
}
.post-author .author .function {
  font-size: 1.4rem;
  line-height: 1.4;
}

.post-author .content p {
  font-size: 13px;
  color: #707070;
  font-size: 1.4rem;
  font-weight: 300;
}

/* NEXT */
.post-next .wpb-posts-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  align-items: center;
  margin: 80px auto 0px;
}
.post-next .wpb-posts-nav a {
  display: grid;
  grid-gap: 20px;
  align-items: center;
  color: #0075C7;
}
.post-next .wpb-posts-nav a:hover h4 {
  color: #0075C7;
}
.post-next .wpb-posts-nav strong {
  margin-bottom: 1rem;
}
.post-next .wpb-posts-nav h4 {
  margin: 0;
  color: #1B1B1B;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  font-weight: 400;
  transition: all 0.2s ease-in-out 0s;
}
.post-next .wpb-posts-nav a svg {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.post-next .wpb-posts-nav > div:nth-child(1) a {
  grid-template-columns: 100px 1fr;
  text-align: left;
}
.post-next .wpb-posts-nav > div:nth-child(2) a {
  grid-template-columns: 1fr 100px;
  text-align: right;
}
.post-next .wpb-posts-nav__thumbnail {
  display: block;
  margin: 0;
}
.post-next .wpb-posts-nav__thumbnail img {
  border-radius: 5px;
}

/* CONTACT */
#post .banner-contact__card {
  margin-left: 0;
  margin-top: 6rem;
}
#post .banner-contact__title {
  color: #fff;
}
#post .banner-contact__content .text {
  color: #fff;
}
#post .banner-contact__content img {
  margin: 0;
}

@media (max-width: 1024px) {
  .post-header {
    flex-direction: column;
  }

  .post-header__top {
    width: 100%;
  }

  .post-header__illustration {
    width: 100%;
    height: 40rem;
  }

  .post-content {
    display: flex;
    flex-direction: column-reverse;
  }

  .post-next .wpb-posts-nav {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .post-header__title {
    font-size: 2.4rem;
  }

  .post-header__illustration {
    height: 20rem;
  }
}
.agency-header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.agency-infos {
  position: relative;
  width: 50%;
  padding: 6rem 0;
  padding-right: 10%;
}

.agency__title {
  font-size: 3rem;
  line-height: 37px;
  font-weight: 700;
  color: #0075C7;
}

.agency__desc {
  margin-top: 2rem;
}

.agency__contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2rem;
}
.agency__contact li button {
  display: block;
  text-align: center;
  border-radius: 10px 2px;
  font-weight: 400;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  box-shadow: none;
  padding: 1rem 2rem;
  width: 100%;
  cursor: pointer;
}
.agency__contact li button:hover {
  opacity: 0.7;
}
.agency__contact li:nth-child(1) button {
  background: #000;
  color: #fff;
}
.agency__contact li:nth-child(2) button {
  background: #0075C7;
  color: #fff;
}
.agency__contact li:nth-child(3) button {
  background: #8EC0ED;
  color: white;
}
.agency__contact li:nth-child(4) button {
  background: #EBAC19;
  color: #fff;
}

.agency-gallery {
  width: 50%;
  display: flex;
}
.agency-gallery .slick-list {
  padding-left: 0 !important;
}
.agency-gallery__item {
  position: relative;
  border-radius: 20px 5px;
  margin: 0 0.5rem;
}
.agency-gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.agency-content {
  margin: 6rem 0;
  max-width: 1000px;
}
.agency-content h2,
.agency-content h3,
.agency-content h4,
.agency-content h5 {
  color: #0075C7;
  font-weight: 700;
  margin-bottom: 1rem;
}
.agency-content h3 {
  font-size: 2.4rem;
}
.agency-content h4 {
  font-size: 2rem;
}
.agency-content p {
  margin-top: 2rem;
}

/* AGENCY MORE */
.agency-more__list {
  margin-top: 4rem;
}
.agency-more__list .slick-list {
  padding-left: 0 !important;
}

.agency-more__item {
  position: relative;
  margin: 0 0.5rem;
}
.agency-more__item:hover .agency-more__button img {
  transform: rotate(90deg);
}

.agency-more__illustration {
  position: relative;
  border-radius: 20px 5px;
  height: 30rem;
}
.agency-more__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.agency-more__title {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px 5px;
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(190deg, rgba(1, 1, 1, 0) 50%, rgba(1, 1, 1, 0.6) 100%);
}
.agency-more__title .title {
  font-weight: 700;
  margin-top: 1rem;
  font-size: 2.5rem;
}
.agency-more__title .rating {
  font-size: 2rem;
  font-weight: 600;
}

.agency-more__button {
  position: absolute;
  top: 0;
  right: 0;
  background: #1B1B1B;
  border-radius: 5px;
  width: 4.6rem;
  height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agency-more__button img {
  width: 3.4rem;
  height: 3.4rem;
  transition: all 0.3s ease-in-out 0s;
}
.agency-more__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 10;
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #0075C7;
  padding: 4rem 6rem;
  border-radius: 8px;
  font-size: 3rem;
  min-width: 300px;
  text-align: center;
  position: relative;
  max-width: 100%;
}
.popup-content .hours {
  text-align: left;
}
.popup-content > * {
  font-size: 2rem;
  color: #fff;
}
.popup-content h3 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #EBAC19;
}
.popup-content p {
  font-size: 1.6rem;
  line-height: 1.4;
}
.popup-content a {
  color: #fff;
  font-size: 1.6rem;
}
.popup-content a:hover {
  color: #EBAC19;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .agencies__list {
    grid-template-columns: 1fr 1fr;
  }

  .agency-content {
    max-width: 100%;
    text-align: center;
  }

  .agency-header {
    flex-direction: column;
  }

  .agency-infos {
    width: 100%;
    text-align: center;
    padding: 0;
    padding-bottom: 6rem;
  }

  .agency-gallery {
    width: 100%;
    height: 25rem;
  }
  .agency-gallery .slick-list {
    overflow: visible;
  }
}
@media (max-width: 768px) {
  .agencies__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .agency-more__illustration {
    height: 22rem;
  }
}

/*# sourceMappingURL=style.css.map */
