  @import url(../style/element/font.css);
  @import url(../style/element/navbar.css);
  @import url(../style/element/form.css);
  @import url(../style/var/color.css);
  @import url(../style/var/var.css);
  @import url(../style/element/button.css);
  @import url(../style/element/icon.css);
  @import url(../style/element/auth.css);
  @import url(../style/element/notif.css);
  @import url(../style/element/account.css);
  @import url(../style/element/caroussel.css);
  @import url(../style/element/checkbox.css);
  @import url(../style/element/messagerie.css);
  @import url(../style/element/creneaux.css);
  @import url(../style/element/vignette.css);
  @import url(../style/element/tarifs.css);
  @import url(../style/element/calendrier.css);
  @import url(../style/element/rating.css);
    @import url(../style/element/monstres.css);
  body {
    margin: 0;
    padding: 0px;
    background-color: var(--background) !important;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100SVW;
    height:100svh
  }
  footer{
    margin-top: 2rem;
    border-top: 1px solid rgb(0, 0, 0);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-tracks: center;
  }
  * {
    color: var(--couleur-texte);
  }

  a {
    font: inherit;
    font-family: inherit;
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit;
    cursor: pointer;
  }
  header {
    display: grid;
    width: 100%;
    top: 0px;
    margin-left: 0px;
    margin-top: 0px;
    left: 0px;
    margin-top: 4rem;
    min-height: 300px;
  }
  .loader_container{
    display: flex;
    z-index: 20022;
    position: fixed;
    width: 100svw;
    height: 100svh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: 0px;
    backdrop-filter: blur(15px);
  }
  .loader {
    z-index: 200;
    height: 30px;
    aspect-ratio: 6;
    --c: #0000 64%,#000 66% 98%,#0000 101%;
    background:
      radial-gradient(35% 146% at 50% 159%,var(--c)) 0 0,
      radial-gradient(35% 146% at 50% -59%,var(--c)) 25% 100%;
    background-size: calc(100%/3) 50%;
    background-repeat: repeat-x;
    clip-path: inset(0 100% 0 0);
    animation: l2 1s infinite linear;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .loaded{
    display: none;
  }
  @keyframes l2{
    90%,to {clip-path: inset(0)}
  }
  .alert {
    z-index: 1000000;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: fit-content;
    animation: notif 0.5s cubic-bezier(0.77, 0.04, 0.27, 0.96), delete 0.5s forwards;
    animation-delay: 0s, 5s;
  }
  .menu{
    display: none;
  }
  @keyframes notif {
    0% {
      transform: translateX(+100%);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes delete {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(+110%);
      opacity: 0;
    }
  }

  header.account {
    display: grid;
    width: 100%;
    margin-top: 4rem;
    height: fit-content;
    padding-bottom:6rem;
  }

  header.home {
    width: 100%;
    margin-top: 6.5rem;
    z-index: 2;
    min-height: 700px;
    display: grid;
    align-items: center;
    justify-content: center;
  }
  .partie_promo{
    display: grid;
  }
  .flex_container {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 80svw;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .qui_sommes_nous {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 80svw;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
  }
  .styled-quote {
  position: relative;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
  padding: 1rem;
  display: inline-block;
  margin-bottom: 0px;
}

.styled-quote::before {
  content: "❝";
  font-size: 3rem;
  color: var(--secondary);
  position: absolute;
  top: -10px;
  left: -15px;
}

.styled-quote::after {
  content: "❞";
  font-size: 3rem;
  color: var(--secondary);
  position: absolute;
  bottom: -10px;
  right: -15px;
}
.slider-infinite-container {
  overflow: hidden;
  width: 100vw;
  position: relative;
  padding: 2rem 0;
}

.slider-infinite-track {
  display: flex;
  width: calc(200%);
  animation: slideLeft 40s linear infinite;
}

.slider-infinite-item {
  flex: 0 0 auto;
  width: 25vw;
  box-sizing: border-box;
    margin-left: 1rem;
  margin-right: 1rem;
  max-width: 300px;
  min-width: 150px;
}

.slider-infinite-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;

}

.slider-infinite-item img:hover {
  transform: scale(1.05);
}

.shape1 img{
  border-radius: 22% 28% 35% 15% / 30% 25% 20% 25%;
}
.shape2 img{
  border-radius: 30% 20% 38% 23% / 35% 15% 25% 25%;
}
.shape3 img{
  border-radius: 18% 32% 25% 25% / 28% 22% 30% 20%;
}
.shape4 img{
  border-radius: 26% 24% 30% 20% / 20% 30% 25% 25%;
}
.shape5 img{
  border-radius: 22% 28% 35% 15% / 30% 25% 20% 25%;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
  .flex_container .element{
    width: 100%;
    display: grid;
    
  }
  .title_element{
    font-size: 50px;
    font-weight: BOLD;
    text-align: center;
    margin-bottom: 1rem;
  }
.arguments_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
  margin-top: 2rem;
}

.argument_item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(55, 65, 81, 1);
  text-align: left;
}

.argument_item .check {
  font-size: 1.2rem;
  color: var(--primary); /* jaune Hairoo */
  line-height: 1;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.argument_item strong {
  color: #1F2937; /* gris foncé */
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .arguments_grid {
    grid-template-columns: 1fr;
  }
}


  .flex_container img{
    width: 20%;
    height: auto;
  }
  header .flex_header{
    max-width: 1500px;
  }

  .flex_header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100svw;
    height: min-content;
  }
  header.home .left {
    position: relative;
    width: 80%;
    margin-top: 0px;
    margin-left: 0px;
    display: grid;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  #button_header{
      margin-left: auto !important;
      margin-right: auto !important;
  }
  img {
    max-width: 100%;
  }
  .bsb-faq-2 .container{
    display: flex;
    align-items: center;
    justify-content: center;
  } 
  .stock-ticker {
    position: absolute;
    top: 4rem;
    left: 0rem;
    right: 0rem;
    font-size: 15px;
    padding-block: 8px;
    border-block: 1px solid;
    overflow: hidden;
    user-select: none;
    --gap: 20px;
    display: flex;
    gap: var(--gap);
  }
  
  .stock-ticker ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--gap);
    margin-bottom: 0px;
    animation: scroll 15s linear infinite;
  }
  
  .stock-ticker:hover ul {
    animation-play-state: paused;
  }
  
  @keyframes scroll {
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  
  .stock-ticker .company,
  .stock-ticker .price {
    font-weight: bold;
  }
  
  .stock-ticker .price {
    margin-inline: 4px;
  }
  
  .stock-ticker .plus::before {
    content: "↑";
  }
  
  .stock-ticker .minus::before {
    content: "↓";
  }
  
  .stock-ticker .plus .change,
  .stock-ticker .plus::before {
    color: #089981;
  }
  
  .stock-ticker .minus .change,
  .stock-ticker .minus::before {
    color: #f23645;
  }
  .temoignage{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-around;
  }
.card_temoignage {
  margin-top: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-left: 0px;
  background-color: rgba(243, 244, 246, 1);
  padding: 2rem;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 20px 30px -20px rgba(5, 5, 5, 0.24);
}

.header_temoignage {
  display: flex;
  padding: 0;
  margin: 0;
}

.stars_temoignage {
  display: flex;
  justify-content: start;
}

.stars_temoignage svg {
  height: 1rem;
  width: 1rem;
}
.name_temoignage {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
}
:focus{
  outline: none !important;
  box-shadow: none !important;
}
.accordion-item{
  border-radius: var(--radius) !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;}
.accordion-button:not(.collapsed){
    color: inherit !important;
}
.message_temoignage {
  margin-top: 10px;
  margin-bottom: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: rgba(107, 114, 128, 1);
}
.popup {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 1.5rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-top-left-radius: var(--msg-radius);
  border-top-right-radius: var(--msg-radius);
  z-index: 10000000;
}
.fade-in {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.hidden {
  display: none;
}
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-content p{
  font-weight: bold;
}
.down{
  position: relative;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  animation: montée 1s infinite ease-in-out;
}
@keyframes montée {
  from{
    transform: translateY(0%);
  }
  50%{
    transform: translateY(100%);
  }
  to{
    transform: translateY(0%);
  }
  
}
.error{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}
@media screen and (min-width:600px) {
  .popup{
    display: none;
  }
}
  @media screen and (max-width: 1000px) {
    .home .flex_header{
      display: grid;
    }
    header.home .left {
      width: 90svw;
    }
    header.home .right {
      display: none;
    }
    .home .cadence.active{
      color: #cf3170;
      font-weight: bolder;
    }
    header.home{
      height: calc(100svh - 11.4rem);
      min-height: 500px;
      display: grid;
      align-items: center;
      justify-content: center;
    }
    .menu{
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      box-sizing:border-box;
      left: 0rem;  
      right: 0rem;
      bottom: 0rem;
      z-index: 2000;
      background-color: var(--background);
      box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
      backdrop-filter: blur(10px);
      height: 4rem !important;
      border-radius: var(--radius);
    }
    .icon_menu{
      display: flex;
      align-items: center;
      justify-content: space-around;
      width: 90%;
    }
    .bul_page{
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--couleur-texte);
      padding: .2rem .9rem;
      border-radius: var(--round);
    }
    .bul_page p{
      margin-bottom: 0; 
      margin-left: 5px;
    }
  }
  @media screen and (max-width:790px){
    footer{
      text-align: center;
    }
    .temoignage{
      display: grid;
      align-items: center;
    }
    .temoignage .card_temoignage{
      margin-right: 0px;
    }
  }