@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Marcellus&display=swap");
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

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

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

iframe {
  border: 0;
}

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

td, th {
  padding: 0;
}

td:not([align]), th:not([align]) {
  text-align: left;
}

a, a:hover {
  text-decoration: none !important;
}

.g-container {
  padding: 2.5rem;
  max-width: 100%;
  width: 100%;
}

.grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0;
  /* grid-gap: 2.5rem; */
  margin: 0 auto;
  max-width: 1180px;
}

.g-col-1 {
  grid-column: auto/span 1;
}
.g-col-2 {
  grid-column: auto/span 2;
}
.g-col-3 {
  grid-column: auto/span 3;
}
.g-col-4 {
  grid-column: auto/span 4;
}
.g-col-5 {
  grid-column: auto/span 5;
}
.g-col-6 {
  grid-column: auto/span 6;
}
.g-col-7 {
  grid-column: auto/span 7;
}
.g-col-8 {
  grid-column: auto/span 8;
}
.g-col-9 {
  grid-column: auto/span 9;
}
.g-col-10 {
  grid-column: auto/span 10;
}
.g-col-11 {
  grid-column: auto/span 11;
}
.g-col-12 {
  grid-column: auto/span 12;
}

.g-gap-0 {
  grid-gap: 0;
}
.g-gap-1 {
  grid-gap: 1rem;
}
.g-gap-2 {
  grid-gap: 2rem;
}
.g-gap-2_5 {
  grid-gap: 2.5rem;
}
.g-gap-3 {
  grid-gap: 3rem;
}
.g-gap-4 {
  grid-gap: 4rem;
}
.g-gap-5 {
  grid-gap: 5rem;
}

/* .row{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 2.5rem;
    margin: 0 auto;
    max-width: 1180px;
} */
/* .row-100{
    display: grid;
    grid-template-columns: repeat(2,1fr);   
    grid-gap: 2.5rem;
}

.row-4{
    @extend .row;
    grid-template-columns: repeat(4,1fr);
    margin: 0 auto;
}

.row-3{
    @extend .row;
    grid-template-columns: repeat(3,1fr);
    margin: 0 auto;
    max-width: 800px;
}

.col{
    width: 100%;
}

.col-justify{
    width: 100%;
    display: flex;
} */
.h-100 {
  height: 100%;
}

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

.justify-space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

.no-gap {
  grid-gap: 0;
}

.p-0 {
  padding: 0;
}
.p-1 {
  padding: 1rem;
}
.p-1_5 {
  padding: 1.5rem;
}
.p-2 {
  padding: 2rem;
}
.p-2_5 {
  padding: 2.5rem;
}
.p-3 {
  padding: 3rem;
}
.p-3_5 {
  padding: 3.5rem;
}
.p-4 {
  padding: 4rem;
}
.p-4_5 {
  padding: 4.5rem;
}
.p-5 {
  padding: 5rem;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 1rem;
}
.pt-1_5 {
  padding-top: 1.5rem;
}
.pt-2 {
  padding-top: 2rem;
}
.pt-2_5 {
  padding-top: 2.5rem;
}
.pt-3 {
  padding-top: 3rem;
}
.pt-3_5 {
  padding-top: 3.5rem;
}
.pt-4 {
  padding-top: 4rem;
}
.pt-4_5 {
  padding-top: 4.5rem;
}
.pt-5 {
  padding-top: 5rem;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 1rem;
}
.pb-1_5 {
  padding-bottom: 1.5rem;
}
.pb-2 {
  padding-bottom: 2rem;
}
.pb-2_5 {
  padding-bottom: 2.5rem;
}
.pb-3 {
  padding-bottom: 3rem;
}
.pb-3_5 {
  padding-bottom: 3.5rem;
}
.pb-4 {
  padding-bottom: 4rem;
}
.pb-4_5 {
  padding-bottom: 4.5rem;
}
.pb-5 {
  padding-bottom: 5rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-1_5 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-2_5 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-3_5 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.px-4_5 {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}
.px-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-1 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-1_5 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-2_5 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-3_5 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-4_5 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.py-5 {
  padding-left: 5rem;
  padding-bottom: 5rem;
}

.m-0 {
  margin: 0;
}
.m-1 {
  margin: 1rem;
}
.m-1_5 {
  margin: 1.5rem;
}
.m-2 {
  margin: 2rem;
}
.m-2_5 {
  margin: 2.5rem;
}
.m-3 {
  margin: 3rem;
}
.m-3_5 {
  margin: 3.5rem;
}
.m-4 {
  margin: 4rem;
}
.m-4_5 {
  margin: 4.5rem;
}
.m-5 {
  margin: 5rem;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-1_5 {
  margin-bottom: 1.5rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-2_5 {
  margin-bottom: 2.5rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-3_5 {
  margin-bottom: 3.5rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-4_5 {
  margin-bottom: 4.5rem;
}
.mb-5 {
  margin-bottom: 5rem;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mt-1_5 {
  margin-top: 1.5rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-2_5 {
  margin-top: 2.5rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-3_5 {
  margin-top: 3.5rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mt-4_5 {
  margin-bottom: 4.5rem !important;
}
.mt-5 {
  margin-bottom: 5rem !important;
}

.mx-auto {
  margin: 0 auto;
}

/************************/
/****** MAIN THEME ******/
/************************/
:root {
  /* COLOR PALETTE */
  --primary: #d4a14a;
  --secondary: #273855;
  --grey: #929292;
  --lightgrey: rgb(247, 247, 247);
  /* FONTS FAMILY */
  --font-family-heading: "Inter", sans-serif;
  --font-family-text: "Marcellus", serif;
  /* FONT WEIGHT*/
  --300: 300;
  --400: 400;
  --500: 500;
  --600: 600;
  --700: 700;
  --800: 800;
  --text-color: rgb(95, 95, 95);
  --shift-translate: 1%;
  /* BORDER RADIUS */
  --border-radius: .4rem;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-outline-primary {
  border: 1px solid var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.text-white {
  color: #fff;
}

@keyframes radarPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary);
}

h2 {
  font-size: 2rem;
  text-align: center;
}
h2 + hr {
  height: 2px;
  width: 50px;
  border: 0;
  background-color: var(--primary);
  margin: 1.2rem auto;
}

h5 {
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  color: var(--primary);
}
h5 + p {
  font-size: 0.9rem;
  line-height: 1.3;
}

p, a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  color: var(--text-color);
}

ul {
  font-family: "Inter", sans-serif;
}

/* @mixin base--md() {

    html{
        //font-size: 90%;
    }

} */
.conseil {
  padding: 2.5rem;
}
.conseil .row {
  position: relative;
  margin: 0 auto 0 auto;
}
.conseil .conseil-content {
  position: relative;
  margin-top: -15rem;
}
.conseil h2 {
  position: relative;
  color: #fff;
}
.conseil img {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.conseil ul {
  font-size: 0.9rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px -30px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
}
.conseil ul li {
  display: flex;
  padding: 0.5rem 2rem;
}
.conseil ul li:first-child {
  padding-top: 2rem;
}
.conseil ul li:last-child {
  padding-bottom: 2.5rem;
}
.conseil ul li h3 {
  font-size: 1.3rem;
  color: var(--secondary);
}
.conseil ul li i {
  font-size: 0.8rem;
  padding-right: 1rem;
  color: var(--primary);
}
.conseil ul li p {
  font-size: 0.85rem;
}

.about {
  padding: 2.5rem;
}
.about h4 {
  font-size: 1.5rem;
  padding-top: 2rem;
  color: var(--primary);
}
.about p {
  font-size: 0.85rem;
}

.refs {
  font-family: var(--font-family-heading);
  font-size: 0.9rem;
  line-height: 1.3rem;
  color: #5F5F5F;
}
.refs strong {
  font-family: var(--font-family-text);
  color: var(--primary);
}

.contact {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 10rem;
  padding: 1.5rem;
}
.contact .content-item {
  display: flex;
  padding: 1rem 1.5rem;
}
.contact .content-item .content-icon {
  border-right: 1px solid var(--primary);
  padding-right: 1rem;
}
.contact .content-item .content-txt {
  padding-left: 1rem;
}
.contact .content-item i {
  color: var(--primary);
}
.contact img {
  padding: 1rem;
}
.contact a {
  text-decoration: underline !important;
}

.box-fx {
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px -30px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
}

.linkedin {
  height: 100%;
  align-content: center;
  border-radius: var(--border-radius);
}
.linkedin p, .linkedin i {
  color: var(--primary);
}

.datas {
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
  border-radius: var(--border-radius);
  padding-bottom: 4rem;
}

p.number {
  font-family: var(--text-font);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--grey);
}

p.number-desc {
  font-family: var(--text-font);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--grey);
}

.border-right {
  border-right: 1px solid var(--primary);
}

.border-right-md-0 {
  border-right: 1px solid var(--primary);
}

footer {
  width: 100%;
  padding: 1rem 2.5rem;
  background-color: var(--secondary);
  z-index: 900;
}
footer .content {
  display: flex;
  max-width: 1180px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
footer .content ul {
  display: inline-flex;
}
footer .content ul li {
  padding: 0 1rem;
}
footer .content ul li a {
  font-family: var(--font-family-heading);
  font-size: 0.7rem;
  color: #fff;
  transition: 0.3s color;
}
footer .content ul li a:hover {
  color: var(--primary);
}
footer .content ul li a i {
  font-size: 1.5rem;
}
footer .content p {
  font-family: var(--font-family-heading);
  font-size: 0.7rem;
  color: #fff;
}

.pos-fixed {
  position: fixed;
  bottom: 0;
}

.gestion,
.conseil {
  padding-top: 0;
  margin: 0 auto;
}
.gestion .gestion-content,
.gestion .conseil-content,
.conseil .gestion-content,
.conseil .conseil-content {
  position: relative;
  margin-top: -15rem;
  margin: -4rem auto 0 auto;
}
.gestion .btn,
.conseil .btn {
  width: 100%;
  text-align: center;
}
.gestion .btn a,
.conseil .btn a {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  margin: 0 auto;
}
.gestion h1,
.conseil h1 {
  font-size: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.gestion h2,
.conseil h2 {
  font-size: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: var(--border-radius);
}
.gestion h4,
.conseil h4 {
  position: relative;
  top: -0.7rem;
  display: inline-block;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin: -5rem 0 0 2rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: var(--border-radius);
}
.gestion img,
.conseil img {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.gestion ul,
.conseil ul {
  font-size: 0.9rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px -30px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
}
.gestion ul li,
.conseil ul li {
  display: flex;
  padding: 0.5rem 2rem;
}
.gestion ul li:first-child,
.conseil ul li:first-child {
  padding-top: 1rem;
}
.gestion ul li:last-child,
.conseil ul li:last-child {
  padding-bottom: 2.5rem;
}
.gestion ul li h3,
.conseil ul li h3 {
  font-size: 1.3rem;
  color: var(--primary);
  padding: 1rem;
}
.gestion ul li a,
.conseil ul li a {
  display: inline-block;
  font-size: 0.8rem;
  margin-top: 1rem;
  padding: 0.4rem 1.4rem;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
}
.gestion ul li i,
.conseil ul li i {
  font-size: 0.8rem;
  padding-right: 1rem;
  color: var(--primary);
}
.gestion ul li p,
.conseil ul li p {
  font-size: 0.85rem;
}

.about {
  padding: 2.5rem;
  background-color: rgb(244, 244, 244);
  margin-top: 4rem;
}
.about h4 {
  font-size: 1.5rem;
  padding-top: 2rem;
  color: var(--primary);
}
.about p {
  font-size: 0.85rem;
}

header {
  width: 100%;
  height: 55rem;
  background-image: url("/src/assets/img/test.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.g-container-map {
  padding: 0;
  margin-top: -50rem;
  width: 100%;
}

.map-container {
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 130%;
  aspect-ratio: 4/3; /* ou adapte au ratio de ta carte PNG */
  background-image: url("/src/assets/img/carte_france.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.point {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.point.active {
  background: var(--secondary);
}
.point.active .a-pulse {
  background-color: var(--secondary);
}
.point .a-pulse {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: radarPulse 2s ease-out infinite;
}

.info-box {
  display: none;
  position: relative;
  /* width: 500px; */
  width: 100%;
  background: white;
  border-radius: 6px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.3); */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  /* z-index: 10; */
  pointer-events: none;
  /* .thumb{
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 0;

      img{
          width: 100%;

          &:first-child{
              border-radius: var(--border-radius) 0 0 0;
          }

          &:last-child{
              border-radius: 0 var(--border-radius) 0 0;
          }
      }
  } */
}
.info-box img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.info-box button {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  padding: 0.5rem 0.7rem;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  font-weight: bolder;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 1000;
}
.info-box .caroussel {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.info-box .caroussel .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out; /* rapide */
  opacity: 1;
}
.info-box .content {
  padding: 1.5rem 3rem;
}
.info-box .content h5 {
  font-size: 1.5rem;
  color: var(--primary);
  border-radius: var(--border-radius);
}
.info-box .content h6 {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  padding: 0.4rem 0.8rem;
  margin: 0 0 1.5rem 0;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  border-radius: var(--border-radius);
}
.info-box .content a {
  display: block;
  padding: 0.9rem 1rem;
  margin-top: 1rem;
  margin-bottom: 7rem;
  border-radius: var(--border-radius);
  background-color: transparent;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  transition: 0.4s;
}
.info-box .content a:hover {
  color: #fff;
  background-color: var(--primary);
}
.info-box .content p {
  font-size: 0.9rem;
}
.info-box .content p.chapeau {
  font-size: 1.2rem;
}
.info-box .content p strong {
  font-size: 1rem;
  color: var(--primary);
}
.info-box.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: block;
}
.info-box.close-btn {
  margin-top: 10px;
  padding: 64px 10px;
  font-size: 14px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: none; /* par défaut : caché sur desktop */
}

.mentions-legales {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem;
}
.mentions-legales h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.mentions-legales h4 {
  font-size: 2rem;
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: var(--secondary);
}
.mentions-legales p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.metier {
  padding: 0;
  width: 100%;
}
.metier .metier-content {
  padding: 2.5rem;
}
.metier .metier-content h1 {
  text-align: left;
  font-size: 1.7rem;
  max-width: 1180px;
  padding: 2rem 2.5rem;
  margin: -20rem auto 0 auto;
  background-color: #fff;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.metier .metier-content .col-2:nth-child(2) ul {
  margin-top: -9.5rem;
  padding-top: 2rem;
}
.metier ul {
  position: relative;
  font-size: 0.9rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px -30px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
}
.metier ul li {
  display: flex;
  padding: 0.5rem 2rem;
}
.metier ul li:last-child {
  padding-bottom: 2.5rem;
}
.metier ul li i {
  font-size: 0.8rem;
  padding-right: 1rem;
  color: var(--primary);
}
.metier ul li p {
  font-size: 0.9rem;
}

.baseline {
  width: 100%;
  text-align: center;
}
.baseline h1.index {
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding: 2.5rem 4rem;
  margin: -5rem auto;
  border-radius: var(--border-radius);
}

nav {
  position: fixed;
  z-index: 500;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
nav ul {
  display: flex;
  flex-direction: row;
  padding: 0.5rem 0;
}
nav ul li {
  position: relative;
  padding: 0.5rem 0;
}
nav ul li a {
  font-family: var(--font-family-text);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  padding: 1rem;
}
nav ul li.has-submenu {
  cursor: pointer;
}
nav ul li.has-submenu > a i {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}
nav ul li.has-submenu:hover > a i {
  transform: rotate(180deg);
}
nav ul li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #fff;
  padding: 0;
  margin: 0;
  min-width: 180px;
  border-radius: var(0 0 --border-radius --border-radius);
  border: 1px solid var(--primary);
}
nav ul li.has-submenu .submenu li {
  padding: 0.75rem 1rem;
}
nav ul li.has-submenu .submenu li a {
  text-transform: uppercase;
  color: var(--secondary);
  font-size: 0.75rem;
}
nav ul li.has-submenu .submenu li a:hover {
  color: var(--primary);
}
nav ul li:hover .submenu {
  display: block;
}
nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
nav.scrolled a {
  color: var(--secondary);
}
nav .nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.5rem 2.5rem;
}
nav .nav-content .brand img {
  width: 120px;
  min-width: 120px;
}
nav .bars {
  padding: 1rem;
  display: none;
}

section {
  padding: 5rem 0;
}

section.our-team {
  /*  background-color: var(--lightgrey); */
}

/* aside.datas{
    text-align: center;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    padding-bottom: 4rem;
} */
.our-team {
  width: 100%;
  padding: 2.5rem;
}

.team {
  height: 100%;
  border: 1px solid rgb(230, 230, 230);
  border-radius: 0.4rem;
  background-color: #fff;
}
.team img {
  width: 100%;
  border-radius: 0.4rem 0.4rem 0 0;
}
.team-content {
  padding: 1.5rem;
}

.nos-valeurs {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 0;
}
.nos-valeurs .content {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px -30px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
}
.nos-valeurs .content .icone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.nos-valeurs .content .icone img {
  width: 50px;
  height: 50px;
}
.nos-valeurs .content .icone i {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  color: white;
}
.nos-valeurs .content p {
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* blockquote {
    max-width: 1180px;
    font-size: 2rem;
    padding: 0 2rem 3rem 2rem;
    margin: 0 auto;
    line-height: 1.4;
    text-align: center;

    &::before,
    &::after {
        display: inline-block;
        font-size: 5rem;
        color: var(--primary);
    }

    &::before {
        content: "“";
        transform: translateY(1.5rem);
    }

    &::after {
        content: "”";
        transform: translateY(3.1rem);
    }
} */
blockquote {
  max-width: 1180px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  padding: 0 3rem 3rem 4rem;
  margin: 0 auto;
  line-height: 1.4;
  text-align: left;
  position: relative;
  color: #333;
}
blockquote::before, blockquote::after {
  font-size: 5rem;
  color: var(--primary);
  position: absolute;
  font-family: serif;
}
blockquote::before {
  content: "“";
  top: -1.5rem;
  left: 1rem;
}
blockquote::after {
  content: "”";
  bottom: -2rem;
  right: 1rem;
}

/* #cta-to-works {
	display: none; //  CHange with JS
	margin-left: 2rem !important;
}

#works {
	display: none;
}

button#darkmode {
	position: fixed;
	z-index: 9999;
	bottom: 8rem;
	right: 0;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 5px 0 0 5px;
	background-color: #e7ebf6; // for IE
	background-color: var(--color-bg);
	color: hsl(204, 28%, 7%); // for IE
	color: var(--color-contrast-higher);
	box-shadow: -5px 9px 20px -6px rgba(0, 0, 0, 0.59);

}

button.js-alert-me {
	background-color: var(--color-secondary);
	border: 0;

	i {
		padding-top: 5px;

	}
}

.rounded-btn {
	display: inline-block;
	padding: .9rem 1.8rem;
	//background-color: var(--color-primary);
	color: #fff !important;
	font-size: .9rem;
	font-weight: 600;
	vertical-align: middle;
	border: 1px solid var(--color-primary);
	border-radius: 1rem;
	box-shadow: 0px 15px 15px 0px rgba(8, 18, 109, 0.1) !important;

	transition: .5s;

	&:hover {
		background-color: var(--color-secondary);
	}
}

.rounded-outline-btn {
	display: inline-block;
	padding: .9rem 1.8rem;
	color: #fff !important;
	font-size: .9rem;
	font-weight: 600;
	vertical-align: middle;
	border: 1px solid var(--color-secondary);
	border-radius: 1rem;
	box-shadow: 0px 15px 15px 0px rgba(8, 18, 109, 0.1) !important;

	transition: .5s;

	&:hover {
		background-color: var(--color-secondary);
	}
}

.rounded-btn-sm {
	padding: .8rem 1.5rem;
	font-size: .8rem;

	&:hover {
		background-color: var(--color-secondary);
	}
}

.rounded-btn-secondary {
	background-color: var(--color-secondary);
}

.cta-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 1rem 2rem;
	margin: 1.5rem 0;
	background-color: var(--color-primary);
	color: var(--color-contrast-very-high) !important;
	font-size: 1rem;
	font-weight: 600;
	border: 0;
	border-radius: 0.5rem;
	box-shadow: 0px 15px 15px 0px rgba(8, 18, 109, 0.1) !important;

	transition: .5s;

	&:hover {
		background-color: var(--color-secondary);
	}

	&:before {
		font-family: 'Font Awesome 5 Pro';
		content: '\f044';
		padding-right: 1rem;
	}
}

.cta-btn-locked {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 1rem 2rem;
	margin: 1.5rem 0;
	background-color: var(--color-bg);
	color: var(--color-contrast-very-high) !important;
	font-size: 1rem;
	font-weight: 600;
	border: 0;
	border-radius: 0.5rem;
	box-shadow: 0px 15px 15px 0px rgba(8, 18, 109, 0.1) !important;

	&:before {
		font-family: 'Font Awesome 5 Pro';
		content: '\f023';
		padding-right: 1rem;
	}

	&:hover:enabled {
		cursor: default;
	}
}

.choose-date-btn {
	display: inline-block;
	padding: 1rem 2rem !important;
	background-color: var(--color-primary);
	color: #fff !important;
	font-size: 1rem;
	font-weight: 600;
	border: 0;
	border-radius: 0.5rem;
	box-shadow: 0px 15px 15px 0px rgba(8, 18, 109, 0.1) !important;

	transition: .5s;

	&:hover {
		background-color: var(--color-secondary);
	}

	&:before {
		content: 'Choisir';
		padding-right: 1rem;
	}
}




// BRIGHTMODE
@mixin buttons--brightmode() {

	.rounded-outline-btn {
		color: var(--color-secondary) !important;

		&:hover {
			color: #fff !important;
			background-color: var(--color-secondary);
		}
	}
}


// MEDIA QUERIES //

@mixin buttons--sm() {

	#cta-to-works {
		margin-left: 0 !important;
	}

	.choose-date-btn {
		padding: 1rem 1rem 1rem .5rem !important;

		&:before {
			content: '';
			padding-right: 1rem;
		}
	}
} */
/* .thumb {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
} */
hr.quote {
  position: relative;
  height: 2px;
  width: 50px;
  border: 0;
  background-color: var(--primary);
  margin: 4rem auto;
}

#displayed-image {
  filter: grayscale(100%);
  opacity: 30%;
}

.img-container {
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-container.img-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* effet de fond grisé */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9; /* juste sous ton menu */
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

video-background {
  position: fixed; /* Fixe la vidéo en arrière-plan */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Derrière le contenu */
}
video-background video {
  /* min-width: 100%; */
  /* min-height: 100%; */
  object-fit: cover; /* Couvre toute la surface sans déformation */
}

/**********************************************/
/*************** MEDIAS QUERIES ***************/
/**********************************************/
/* Large devices (laptops/desktops, up to 1200px) */
@media screen and (max-width: 1200px) {
  /* @include aside--lg(); */
}
/* Medium devices (landscape tablets, up to 992px) */
@media screen and (max-width: 992px) {
  nav {
    background-color: #fff;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--secondary);
    padding: 2rem;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li {
    position: static;
    margin: 0 auto;
    padding: 1rem 0;
    width: 100%;
    border-top: 1px dashed rgba(255, 255, 255, 0.25);
  }
  nav ul li.has-submenu {
    padding-bottom: 0;
  }
  nav ul li.has-submenu:hover > a i {
    transform: inherit;
  }
  nav ul li.has-submenu .submenu {
    display: block;
    position: static;
    margin-top: 1rem;
    background-color: transparent;
    border-radius: 0;
    border: 0;
  }
  nav ul li.has-submenu .submenu li a {
    color: #fff;
  }
  nav.scrolled a {
    color: #fff;
  }
  nav .bars {
    display: flex;
    cursor: pointer;
    color: var(--secondary);
  }
}
/* Small devices (portrait tablets and large phones, up to 768px) */
@media screen and (max-width: 768px) {
  /* @include grid-system--sm();
  @include team--sm(); */
  .info-box button {
    display: block;
  }
  #displayed-image {
    display: none !important;
  }
  .g-container-map {
    padding: 0;
    margin-top: -35rem;
  }
  .map-container {
    width: 100%;
    padding: 2rem;
  }
  .info-box {
    position: absolute;
    height: 100vh;
    top: 80px;
  }
  .img-container {
    height: 550px;
  }
  .p-sm-1 {
    padding: 1rem;
  }
  .border-right {
    border-right: 0;
  }
  .pos-fixed-sm {
    position: fixed;
    bottom: 0;
  }
}
/* Very small devices (portrait tablets and large phones, up to 992px) */
/* SPECIFIC RULES*/
/* Between Small and Medium */
/* Small devices (portrait tablets and large phones, up to 768px) */
@media screen and (min-width: 768px) {
  .grid {
    grid-gap: 2.5rem;
  }
  .g-col-md-1 {
    grid-column: auto/span 1;
  }
  .g-col-md-2 {
    grid-column: auto/span 2;
  }
  .g-col-md-3 {
    grid-column: auto/span 3;
  }
  .g-col-md-4 {
    grid-column: auto/span 4;
  }
  .g-col-md-5 {
    grid-column: auto/span 5;
  }
  .g-col-md-6 {
    grid-column: auto/span 6;
  }
  .g-col-md-7 {
    grid-column: auto/span 7;
  }
  .g-col-md-8 {
    grid-column: auto/span 8;
  }
  .g-col-md-9 {
    grid-column: auto/span 9;
  }
  .g-col-md-10 {
    grid-column: auto/span 10;
  }
  .g-col-md-11 {
    grid-column: auto/span 11;
  }
  .g-col-md-12 {
    grid-column: auto/span 12;
  }
}
/* Small devices (portrait tablets and large phones, up to 768px) */
@media screen and (min-width: 992px) {
  .g-col-lg-1 {
    grid-column: auto/span 1;
  }
  .g-col-lg-2 {
    grid-column: auto/span 2;
  }
  .g-col-lg-3 {
    grid-column: auto/span 3;
  }
  .g-col-lg-4 {
    grid-column: auto/span 4;
  }
  .g-col-lg-5 {
    grid-column: auto/span 5;
  }
  .g-col-lg-6 {
    grid-column: auto/span 6;
  }
  .g-col-lg-7 {
    grid-column: auto/span 7;
  }
  .g-col-lg-8 {
    grid-column: auto/span 8;
  }
  .g-col-lg-9 {
    grid-column: auto/span 9;
  }
  .g-col-lg-10 {
    grid-column: auto/span 10;
  }
  .g-col-lg-11 {
    grid-column: auto/span 11;
  }
  .g-col-lg-12 {
    grid-column: auto/span 12;
  }
}

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