@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freeman&display=swap');

*,
::before,
::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 50%;
font-family: 'Roboto', sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

hr {
  margin: 0px auto;
  width: 70%;
}

body {
  background:#e3f2e1; 
}

/* Style the header */
.information {
  max-width: 100%;
  margin: 0;
  height: auto;
  text-align: center;
  font-size: 20px;
  padding: 15px;
  background: #0e273b;
  color:#fac700;
}

.information span {
  text-decoration: underline;
}

/* Page content */
.content {
  padding: 25px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 102px;
}

nav {
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0px 25px;
  background: #e3f2e1;
  z-index: 1000;
}

.nav-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 20px;
}

.nav-icon span {
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
  font-size: 25px;
  margin-left: 10px;
  font-weight: 400;
  color: #333;
}

.nav-icon img {
  width: 100px;
  height: 80px;
  min-width: 100px;
}

.hamburger {
  display: none;
}

.navlinks-container i {
  margin-left: 5px;
}

.navlinks-container a {
  padding: 12px 0;
  margin: 10px 15px 0px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  display: inline-block;
  position: relative;
}

.navlinks-container {
  margin-left: 70px;
}

.navbar-form {
  width: 30px;
  margin: 0px 10px;
  font-size: 16px;
}

.navlinks-container a:hover {
  color: #4fbec6;
  transition: 0.3s ease-out;
}

.nav-authentication {
  margin-left: auto;
}

.sign-user {
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
  color: #333;
  font-size: 16px;
  min-width: 90px;
  padding: 10px 5px;
  margin: 0 0px;
  border-radius: 5px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  top: 100%;
  transition: 0.3s ease-out;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 237px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  margin: 0;
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #76ac2c;
  color: black;
  transition: 0.3s ease-out;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  color: #3e8e41;
}

/* Style pour le logo */
.logo {
  float: left;
  margin: 8px 16px;
}

/* Style pour l'icône de connexion */
.login-icon {
  float: right;
  margin: 8px 16px;
  color: white;
  font-size: 20px;
}

@media (max-width: 1280px) {
  .navlinks-container {
    margin-left: 0;
  }

  /* liste deroulant */
  .dropdown-content {
    position: sticky;
    top: 0;
  }

  /* Style the search box inside the navigation bar */
  .search-container {
    margin: 0px;
    float: none;
  }

  input[type="text"],
  .topnav .search-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }

  .topnav input[type="text"] {
    border: 1px solid #ccc;
  }

  /* Style pour le logo */
  nav {
    padding: 15px 10px;
    position: relative;
  }

  .nav-icon {
    order: 2;
    margin: 0;
    margin-left: auto;
  }

  .nav-icon span {
    font-size: 22px;
  }

  .nav-icon img {
    height: auto;
  }

  .main-navlinks {
    order: 1;
  }

  /* hamburgerToggler */
  .hamburger {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: none;
    display: flex;
    background: #f1f1f1;
    align-items: center;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    pointer-events: none;
    transition: opacity 0.3s 0.15s ease-out;
  }

  .hamburger span:nth-child(1),
  .hamburger span:nth-child(3) {
    transition: transform 0.3s ease-out;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(7px);
  }

  .hamburger span:nth-child(3) {
    transform: translateY(-7px);
  }

  .hamburger.open span:nth-child(1) {
    transform: translate(0) rotate(135deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transition: opacity 0s ease-out;
  }

  .hamburger.open span:nth-child(3) {
    transform: translate(0) rotate(-135deg);
  }

  .navlinks-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    background: #f1f1f1;
    top: 100%;
    left: 0;
    height: 100vh;
    padding: 15px 50px 15px 20px;
    transform: translate(-100%);
    transition: transform 0.3s ease-out;
    width: 100%;
  }

  .open {
    transform: translate(0%);
  }

  .navlinks-container a {
    font-size: 18px;
    margin: 10px 14px;
    padding: 5px;
  }

  .nav-authentication {
    order: 3;
    margin-right: 0px;
  }
}

@media (max-width: 500px) {
  .nav-icon img {
    width: 80px;
  }

  .nav-icon span {
    font-size: 20px;
  }
}

/* bannierre mobille */
.container-bannierre {display: none;object-fit: cover;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	pargin:auto;
	height: auto;
	
}

.bannierre img {margin-top:60px;}

.bannierre img {max-width: 100%;height: auto;border: 1px solid  #fac700;}

@media (max-width:600px){
	.bannierre img {margin-top:100px;}
	.container-bannierre{display: block;}
}




/* bannierre2 */
.container-bannierre2 {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	pargin:auto;
	height: auto;
	
}



.bannierre2 img {max-width: 100%;height: auto;margin-top:100px;object-fit:cover;border: 1px solid  #fac700; }

@media (max-width:600px){
	.bannierre img {margin-top:60px;}
	.container-bannierre2 {display: none;
	
		
}

}







 /* animation du texte */
.container3 { max-widht :1600px;
margin:0;padding:10px 20px 0;
}

.container3 p {
	text-transform: uppercase;
color: #222;color:  transparent;
font-weight: 900;

font-size:0px; }
.container3 p span {display:inline-block;
position: relative;
overflow: hidden;
font-size: clamp(20px, 8vw,30px);}

.container3 p span::after{
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
top:0;
left:0;
transform: translateX(-100%);
}

.container3 p:nth-child(1) {font-weight:300;
animation: txt-appearance 0s 1s forwards;}

.container3 p:nth-child(2) {   
animation: txt-appearance 0s 1.25s forwards;}

.container3 p:nth-child(1) span::after {background: #fac700;
animation: slide-in 0.75s ease-out forwards,
slide-out 0.75s 1s ease-out forwards;}

.container3 p:nth-child(2) span::after {background: #0e273b;
animation: slide-in 0.75s 0.3s ease-out forwards,
slide-out 0.75s 1.3s ease-out forwards;}

@keyframes slide-in{
	100% {transform: translateX(0%)}
}

@keyframes slide-out{
	100%{transform: translateX(100%)}
}

@keyframes txt-appearance {
	100%{color: #222;}
}

@media (max-width:600px){
	
	
.container3 p span {
font-size: clamp(10px, 8vw,15px);}
}



/*cookises */
.cookie-consent {
	border: 1px solid #c5c5c6;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: #555;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}

.cookie-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-message p {font-size: 18px;line-height: 1.4;padding: 20px;
    margin: 0;
    flex-grow: 1;
}

.cookie-message button {
    background-color: #f6a71c ;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

.cookie-message button:hover {
    background-color: #F8EB78;
}





/*slide categorie 2 */
.grand_categories-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.categories-container {margin-bottom: 60px;
    display: flex;justify-content: space-around;
    overflow-x: auto;
    gap: 10px;
    padding: 20px;
    width: 100%;
    scroll-snap-type: x mandatory;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    scroll-snap-align: start;
}

.category-image {
    width:100px;;
    height: 100%;
   
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    overflow: hidden;
}


.category-image img {object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.category span {color: #333;
    text-align: center;
    font-size: 1.9em;
}

@media (max-width: 768px) {
    .categories-container {
        justify-content: flex-start;
    }
	.category-image {
    width:100%;
    height: auto;
   
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    overflow: hidden;
}
}





/* icon-Qualité garantie */
.grand-container-icon-garantie{
    font-family: 'Arial', sans-serif;
    background-color: #e3f2e1; 
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
}

.container-icon-garantie {margin-top: 50px;margin-bottom: 50px;max-width: 100%;
    display: flex;
    flex-direction:row;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width:600px){
	.container-icon-garantie {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}


}

.service-card1 {width: 300px;
    display: flex;
    align-items: center;
    background-color: #f8f5e1;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
   flex-wrap: wrap;
}

.icon-garantie {
    background-color: #f6f6f6;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

.icon-garantie img {object-fit: cover;
    width: 40px;
    height:40px;
}

.text-garantie h3 {
    font-size: 18px;
    margin: 0;
    color: #1A4D2E; /* Couleur similaire à celle de votre image */
}

.text-garantie p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}






/* Slideshow container */
.slideshow-container {
	padding-left: 25px;
	padding-right: 25px;
  max-width: 100%;
  position: relative;
  margin: auto;height: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;margin-top: 50px;object-fit:cover;
}
.mySlides img{
  object-fit:cover;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}






/* parents flexbox*/


.container-don {
	max-width: 1400px;
	padding-left: 25px;
	padding-right: 25px;
	margin: auto;
	height: auto;
}

.container-text-don {max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
	height: auto; }
	

.petit-don{max-width: 100%;margin: 50px 0 ;
display: flex;background: #444; align-items: center;justify-content: center;}
.image-don {max-width: 600px; max-height: 600px; object-fit: cover;}
.text-don {background:#0e273b;margin-left: -50px;padding: 20px;}
.text-don p {color: #ffffff;font-size: 16px;padding: 10px;line-height: 1.7;}
.text-don h3 {color: #ffffff;font-size: 16px;padding: 10px;;}
.border-text2{border: 1px solid  #fac700; }



@media (max-width:600px){
	.container-text-don {max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
	height: auto;}
	
		
	
	.petit-don{
display: flex;flex-direction: column;background:  #444;width: 100%;}
	.image-don {max-width: 600px; max-height:600px;}
	.text-don {background:#0e273b;margin-top: -40px;margin-left: 0;}

}



/* boutton flex box*/

.button {
  border-radius: 4px;
  background-color: #0e273b;
  border: none;border: 2px solid  #fac700;
  color: #fac700; font-weight: 200;
  text-align: center;
  font-size: 16px;
  padding: 15px;
  width: 250px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px 20px 20px;
}

@media (max-width:360px){
.button {

  width: 200px;}}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}


	   
	
/* TABLEAU COMPARISON RECONDITIONé et neuf*/

.container-tableau-comparison{max-width: 1300px;
padding-left: 25px;
padding-right: 25px;
margin: auto;
height: auto;}

table {font-size: 16px;margin-top: 50px;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid   #fac700;
}

/* Style table headers and table data */
th, td {
  text-align: center;
  padding: 16px;
}

th:first-child, td:first-child {
  text-align: left;
}

/* Zebra-striped table rows */
tr:nth-child(even) {
  background-color: #f2f2f2
}

.fa-check {
  color: green;
}

.fa-remove {
  color: red;
}



/* 3 colonnes */

.grand_services-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s;
}

/*.service-card:hover {
    transform: translateY(-10px);
}*/

.service-card.highlighted {
    background-color:  #fac700;
    color: white;
}

.service-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.service-card h3 {color: #444;
    margin: 10px 0;
    font-size: 2.5em;
}

.service-card p {
    font-size: 1.5em;
    color: #666;
}

.service-card.highlighted p {
    color: #666;
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
}






/*ACCORDION panel */

h2 {font-size: clamp(18px, 3vw,20px);min-width: 40%;margin: 60px 0 30px;color: #555;}
.container-accrdion{max-width: 1300px;
padding-left: 25px;
padding-right: 25px;
margin: auto;
height: auto;}


.petit-accordion{margin-top: 50px;}
.accordion {
  background-color:  #0e273b;
  color:  #fac700;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: 1px solid #ffcc00;
  outline: none;
  transition: 0.4s;
}
.petit-accordion hr {width: 100%;}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #f5f2fd;transition:  0.3s ease-out;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
	
  transition: max-height 0.2s ease-out;
}
.panel p{font-size: 13px; color: #333;line-height: 1.4;padding: 10px; }

.accordion:after {
  content: '+'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "-"; /* Unicode character for "minus" sign (-) */
}





/* pourquoi reconditioné*/

.petit-contenair-pouequoi h1 {font-size: clamp(18px, 3vw,20px); color: #555;padding: 25px;margin-top: 30px;margin-bottom: 20px;}
.container-reconditionne {
	max-width: 1400px;
	padding-left: 25px;
	padding-right: 25px;
	margin: auto;
	height: auto;
}

.container-text-reconditione {max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
	height: auto;}
	

.petit-reconditionne{max-width: 100%;margin: 50px 0 ;
display: flex;background: #555; align-items: center;justify-content: center;}
.image-reconditionne {max-width: 600px; max-height: 600px; object-fit: cover;}
.text-reconditionne {background:#0e273b; margin:40px 20px 40px 20px;padding: 20px;}
.text-reconditionne p {color: #fac700; font-size: 16px;padding: 10px;line-height: 1.7;}
.border-text{border: 1px solid #FFF;}




@media (max-width:600px){
	.petit-contenair-pouequoi h1 {margin-bottom:  50px;}
	.container-text-reconditione {max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
	height: auto;}
	
		
	
	.petit-reconditionne{
display: flex;flex-direction: column;background:#555;width:  100%; }
	.image-reconditionne {max-width: 600px; max-height:600px;}
	.text-reconditionne {background:#0e273b;margin-top: -40px;margin-left: 0;margin-right: 0;margin-bottom: 0;}

}





/* IMAGE MARQUE PARTENAIRES*/

/* Slider */
.container-marques{margin:30px 0 0 0;
}
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {object-fit: cover;
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}










/* Style pour le texte défilant */
.texte-defilant-container {
    /* Couleur vert foncé */
    color:  #fac700; 
    padding:0 25px ;
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: clamp(12px,2vw,20px);
    text-align: center;
	 margin: auto;
}

@media (max-width:360px){
	.texte-defilant-container { font-size: clamp(12px,2px,20px);}
	}
	
.texte-defilant {
    display: flex; background-color: #444;
    flex-direction: column;
    align-items: center;
    height: 50px; /* Hauteur fixe pour le conteneur */
}

.texte-defilant p {
   font-weight: bold;
    padding: 20px;
    line-height:1.4; /* Doit correspondre à la hauteur */
    white-space: nowrap;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
}
/* fin Style pour le texte défilant */









/* TEXTE image 1 */
.conainer_animation {color: #333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color:#e3f2e1; 
}

.container {font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color:  #fac700;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 90%;
    margin: 20px;
	padding: 20px;border: 1px solid #666;
}

.image-container img {
    width: 100%;
    height: auto;
}

.text-container {
    padding: 20px;
    text-align: center;
}

.icon-container {
    position: relative;
    display: inline-block;
    margin: 20px 0;
}

.icon {
    width: 100px;
    height: 100px;
}

.rotating-text  {
    position: absolute;
    
    animation: rotate 10s linear infinite;
}

.rotating-text span {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 12px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container ul {
    list-style-type: none;
    padding: 0;
}

.container ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.container ul li::before {
    content: "✓";font-size: 20px;
    margin-right: 10px;
    color: green;
}
.container a{
color: #fff;
}

.cta-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #333;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }

    .image-container, .text-container {
        flex: 1;
    }
	
}


/* les 3 POINTS DE CONTROL */

.grand_recond-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a2a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.recond-container {font-size: 18px;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.recond-header h1 {
   
    margin-bottom: 20px;
    color: #EFC10D;
}

.recond-header p {color: #444;
  
    margin-bottom: 40px;
}

.recond-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
    position: relative;color: #333;
}

.recond-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.recond-step-number {
    background-color: #ffcc00;
    color: #0a0a2a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin-bottom: 10px;
    position: relative;
    animation: recond-bounce 2s infinite;
}

.recond-step-title {
    font-size: 1.2em;
}

.recond-cta-button {
    background-color: #444;
    color:  #fac700;
    border: none;
    padding: 15px 30px;
    font-size:0.7;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.recond-cta-button:hover {
    background-color: #555;
}

@keyframes recond-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .recond-steps {
        flex-direction: column;
    }

    .recond-step {
        margin-bottom: 30px;
    }
}





/* caroussel hero acceuil */
.container_carousel {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}
.carousel {margin-top: 120px;
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h1 {
    font-size: 6em;
    margin: 0;
}

.carousel-caption h2 {color: #ffcc00;
    font-size: 3em;
    margin: 0;
}

.carousel-caption p {
    font-size: 2.4em;
}

.btn {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 2em;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animated-text {
    animation: fadeIn 2s ease-in;
}
@media (max-width: 900px) {
   .carousel {margin-top: 0px;
 
}

  
}




