* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}



* {
  box-sizing: border-box;
}



a {
  text-decoration: none;
}


























.titrePlace {
	position: absolute;
	z-index: 100;
	margin-top: 20%;
	margin-left:5%;
}

.titre{
	
	color: white;
	font-size: 5em;
	margin-bottom:20px;
}

@media (max-width: 1200px) {
    .titre {
        font-size: 4em; /* Réduction pour les écrans larges mais un peu plus petits */
    }
}

@media (max-width: 768px) {
    .titre {
        font-size: 3em; /* Réduction pour tablettes */
    }
}

@media (max-width: 480px) {
    .titre {
        font-size: 2em; /* Réduction pour mobiles */
        margin-bottom: 15px; /* Ajustement du margin pour petits écrans */
    }
}

.container {
    height: 100%;
    overflow-x: hidden;
}

.section {
    height: 100vh;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
		overflow: hidden;

}


.portfolio {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.gallery {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery img {
    flex: 0 0 100%;
    object-fit: cover;
}

.section:nth-child(even) {
    background-color: #fff;
}

.section:nth-child(odd) {
    background-color: #000;
}







.slideshow-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}


.thin{
	font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}













/* Media queries pour les petits écrans */
@media (max-width: 768px) {
  .titrePlace {
    flex-direction: column;  /* Sur petits écrans, les éléments passent sur des lignes différentes */
    justify-content: center;  /* Centrer horizontalement */
    align-items: center;  /* Centrer verticalement */
    text-align: center;  /* Assurez-vous que le texte est centré */
    width: 100%;  /* Assurez-vous que le conteneur prend toute la largeur */
  }


}


































.montserrat{
	font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}









.btn {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1.5;
    font: 700 1.2rem 'Source Sans 3', sans-serif;
    padding: 1em 2em;
    letter-spacing: 0.05rem;
    text-decoration: none;
}

.draw-border {
    position: relative;
    box-shadow: inset 0 0 0 4px #fff;
    color: #fff;
    transition: color 0.25s 0.083s;
}

.draw-border::before,
.draw-border::after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: '';
    pointer-events: none;
    position: absolute;
    width: 0; 
    height: 0;
    bottom: 0; 
    right: 0;
}

.draw-border::before {
    border-bottom-width: 4px;
    border-left-width: 4px;
}

.draw-border::after {
    border-top-width: 4px;
    border-right-width: 4px;
}

.draw-border:hover {
    color: #92c01f;
}

.draw-border:hover::before,
.draw-border:hover::after {
    border-color: #92c01f;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
}

.draw-border:hover::before {
    transition-delay: 0s, 0s, 0.25s;
}

.draw-border:hover::after {
    transition-delay: 0s, 0.25s, 0s;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .btn {
        font-size: 1.1rem;
        padding: 0.9em 1.8em; /* Réduction légère pour les écrans larges */
    }
}

@media (max-width: 768px) {
    .btn {
        font-size: 1rem;
        padding: 0.8em 1.5em; /* Pour les tablettes */
    }
}

@media (max-width: 480px) {
    .btn {
        font-size: 0.9rem; /* Texte plus petit pour les mobiles */
        padding: 0.7em 1.2em; /* Marges réduites */
        line-height: 1.4; /* Ajustement de la hauteur de ligne */
    }
    .draw-border {
        box-shadow: inset 0 0 0 2px #fff; /* Réduction de l'épaisseur pour les petits écrans */
    }
    .draw-border::before,
    .draw-border::after {
        border-bottom-width: 2px;
        border-left-width: 2px;
        border-top-width: 2px;
        border-right-width: 2px;
    }
}




/* Burger menu */




header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #111616;
    color: #fff;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: -100px; /* Start hidden above the screen */
    transition: top 0.5s ease-in-out; /* Smooth transition */
}

header.show {
    top: 0; /* Slide down into view */
}

.logo img {
    height: 60px;
	padding-left: 30px;
}

.desktop-nav {
    display: none;
	z-index: 999;
	padding-right:100px;
}

.desktop-nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
    text-transform: uppercase;
    font-family: "Source Sans 3", sans-serif;
	font-weight: 600;
}

/* Add the underline effect */
.desktop-nav a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #92c01f;
    right: 100%;
    bottom: -2px;
    transition: width 0.3s ease, right 0.3s ease;
}

.desktop-nav a:hover:after {
    width: 100%;
    right: 0;
}

/* Change the color on hover */
.desktop-nav a:hover {
	
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
	z-index: 999;
	margin-right: 5%;

}

.burger-menu .bar {
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.bar:nth-child(2) {
    height: 2px;
	width: 70%;
    background-color: #fff;
    transition: all 0.3s ease;
}



/* Hide the mobile menu by default */
.nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 200px;
    background-color: #444;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: right 0.3s ease;
	 text-transform: uppercase;
    font-family: "Source Sans 3", sans-serif;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
	 text-transform: uppercase;
    font-family: "Source Sans 3", sans-serif;
}

.nav-links a:hover {
    color: #ddd;
}

.nav-links.show {
    right: 0;
	z-index: 999;
}

/* Transform burger menu to cross */
.burger-menu.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(7.5px, 7.5px);
}

.burger-menu.open .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .burger-menu {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }
}







/* Pictos */




/* Style de base pour la mise en page */
.containerB {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

/* Style des boîtes */
.boxB {
    flex: 1;
    min-width: 300px;
    background-color: #111616;
    padding: 20px;
    border-radius: 8px;
}

/* Centrer le texte */
.containerB h2 {
    text-align: center;
	color: #92c01f;
}

.containerB p {
    text-align: center;
	color: #fff;
		font-family: "Source Sans 3", sans-serif;

}



.Montserrat {
    font-family: 'Montserrat', sans-serif;
}

.TableauTitre {
    font-size: 1.5em;
    font-weight: bold;
}

/* Espacement pour les éléments de bas de page */
.EspaceBas {
    margin-top: 20px;
    text-align: center;
}

/* Responsiveness : quand l'écran est plus petit, les boîtes se réorganisent */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    
    .boxB {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .EspaceBas {
        font-size: 14px;
    }
}

/* Ajouter des images réactives */
.containerB img {
    max-width: 10%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
   .containerB img {
    max-width: 20%;
    height: auto;
    display: block;
    margin: 0 auto;
    }
}

/* Style de la section logo */
.logo {
    font-weight: bold;
    font-size: 1.2em;
}





/*Hover MENu */
/*

.hover-button {
    position: relative;
    padding: 10px 10px;
    background-color: #fff;
    color: #03032b;
    text-decoration: none;
    border: none;
    cursor: pointer;
    outline: none;
    overflow: hidden;
}

.hover-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 0;
    height: 11px;
    background-color: #9CCD9A;
    transition: width 0.3s ease;
}

.hover-button:hover::after {
    width: 90%;
}

@media only screen and (max-width: 766px) {
  .hover-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #03032b;
    transition: width 0.3s ease;
}
}












/* compteurs */

/* Mise en page du section */

#chiffres {
	background-color: #111616;
}


.White {
	color: #fff;
}

.Congrat {
	font-size: 1.4em; 
	text-align: center; 
	line-height: 1.5; 
	padding: 10px;
	font-family: "Source Sans 3", sans-serif;
	margin-top: 2%;
	
}



.titreB {
	padding-top: 100px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 3em;
    color: white;
	text-align: center;
}

#services {
    background-color: #111616;
    padding: 20px;
}

#services .titreB H2{
	Color: red;
	font-family: "Montserrat", sans-serif;
	text-align: center;
}

.centered-title {
    text-align: center;
    width: 100%;
    margin: 20px 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    color: #92c01f;
    font-size: 3vw; /* Ajuste la taille de la police par rapport à la largeur de l'écran */
}

.ThinWord {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 2.2rem;
}

/* Adjust font size for smaller screens */
@media (max-width: 1200px) {
    .ThinWord {
        font-size: 2rem;
    }
}

/* Adjust font size for medium screens */
@media (max-width: 992px) {
    .ThinWord {
        font-size: 1.8rem;
    }
}

/* Adjust font size for small screens */
@media (max-width: 768px) {
    .ThinWord {
        font-size: 1.6rem;
    }
}

/* Adjust font size for very small screens (mobile phones) */
@media (max-width: 480px) {
    .ThinWord {
        font-size: 1.4rem;
    }
}
.ThinWordB {
    font-weight: 500;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-family: "Source Sans 3", sans-serif;
}

.chiffre {
    font-size: 3em;
}

/* Conteneur flexbox pour les compteurs */
.counter-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Permet de déplacer les éléments si nécessaire */
    margin-top: 20px;
    gap: 20px; /* Espace entre les éléments */
}

.counter-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    flex: 1 1 30%; /* Chaque élément prend 30% de la largeur, avec flexibilité */
    min-width: 250px; /* Empêche les éléments de devenir trop petits */
    box-sizing: border-box; /* Inclut le padding et la bordure dans la largeur */
}

/* Ajustements pour les écrans plus petits */

/* Écrans moyennes (tablettes) */
@media (max-width: 1024px) {
    #services h2 {
        font-size: 2.5rem; /* Taille plus petite */
        padding-top: 50px;
    }

    .counter-box {
        font-size: 2rem;
    }
}

/* Écrans plus petits (mobiles) */
@media (max-width: 768px) {
    #services h2 {
        font-size: 2rem;
        padding-top: 40px;
    }

    .counter-container {
        justify-content: center; /* Centrer les éléments */
    }

    .counter-box {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}

/* Écrans très petits (téléphones) */
@media (max-width: 480px) {
    #services h2 {
        font-size: 1.5rem;
        padding-top: 30px;
    }

    .counter-container {
        flex-direction: column; /* Empiler les éléments verticalement */
        align-items: center; /* Centrer les éléments */
    }

    .counter-box {
        font-size: 1.5rem;
        margin-bottom: 15px; /* Un peu d'espace entre les éléments */
        min-width: 100%; /* Les éléments prennent toute la largeur */
    }
}





.couleur {
	color:#92c01f;
}


/* PORTFOLIO */





/* --- */


.portfolio h3 {
    padding-bottom: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 3em;
}

.portfolio {
    position: relative;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.image-container {
    flex: 1;
    position: relative;
    max-height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    transition: flex 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.image-container:hover {
    flex: 4;
    transform: scale(1.05);
    z-index: 1;
}

.image-container:not(:hover) {
    flex: 1;
    opacity: 1;
    transition-delay: 0.1s;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease-in-out;
    pointer-events: none;
}

.image-container:hover .overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0.2s;
}

.image-container:not(:hover) .overlay {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition-delay: 0s;
}

.overlay h3,
.overlay .button {
    margin: 0;
    padding: 10px 20px;
    background-color: transparent; /* No background color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.overlay .button {
    background-color: #333;
}

.image-container:hover .overlay h3,
.image-container:hover .overlay .button {
    opacity: 1;
    transform: scale(1);
}

.overlay .button:hover {
    background-color: #555;
}

.overlay h3 {
	padding-bottom: 40px;

}








/* Styles généraux pour la section portfolio */
.portfolio h3 {
    padding-bottom: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 3em;
}

/* Portfolio container */
.portfolio {
    position: relative;
    height: 100vh;
    display: flex;
    overflow: hidden;
    flex-wrap: wrap; /* Permet aux éléments de se disposer sur plusieurs lignes */
}

/* Container des images */
.image-container {
    flex: 1;
    position: relative;
    max-height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    transition: flex 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Effet au survol */
.image-container:hover {
    flex: 4;
    transform: scale(1.05);
    z-index: 1;
}

/* Gestion de l'overlay */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease-in-out;
    pointer-events: none;
}

/* Overlay au survol */
.image-container:hover .overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0.2s;
}

.image-container:not(:hover) .overlay {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition-delay: 0s;
}

.overlay h3,
.overlay .button {
    margin: 0;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.overlay .button {
    background-color: #333;
}

.image-container:hover .overlay h3,
.image-container:hover .overlay .button {
    opacity: 1;
    transform: scale(1);
}

.overlay .button:hover {
    background-color: #555;
}

.overlay h3 {
    padding-bottom: 40px;
}

/* Media Queries pour rendre responsive */
@media (max-width: 768px) {
    .portfolio {
        flex-direction: column; /* Colonne sur petits écrans */
        height: auto; /* La hauteur s'adapte à la taille du contenu */
    }

    .image-container {
        height: 300px; /* Réduit la hauteur des images sur mobile */
        margin-bottom: 15px; /* Espace entre les images */
    }

    .image-container:hover {
        flex: 1; /* Pas d'agrandissement au survol sur mobile */
        transform: none; /* Pas de zoom au survol */
    }

    .overlay {
        transform: translate(-50%, -50%) scale(1); /* Pas d'effet de zoom */
    }

    .portfolio h3 {
        font-size: 2em; /* Taille de police plus petite sur mobile */
    }

    .overlay h3 {
        font-size: 1.5em; /* Taille de texte réduite sur mobile */
    }
}

@media (max-width: 480px) {
    .portfolio {
        padding: 10px; /* Un peu d'espace autour du portfolio */
    }

    .image-container {
        height: 250px; /* Réduit encore la taille des images sur très petits écrans */
    }

    .overlay h3 {
        font-size: 1.2em; /* Taille encore plus petite sur petits écrans */
    }

    .overlay .button {
        padding: 8px 16px; /* Boutons plus petits sur les petits écrans */
    }
}






















#intro {
	background-color: #111616;
}

#intro h2 {
	padding-top: 100px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 3em;
	color:white;
}




/* Style de base */


h1 {
    font-size: 2rem;
    color: #555;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
	
}

/* Section portfolio */




















/* General Styles for Portfolio */
.portfolioT .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 0px; /* No space between images */
  width: 100%;
  background-color: #111616;
}

.grid-item {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
	cursor: pointer;
}

.grid-item .title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease; 
	font-family: "Source Sans 3", sans-serif;
}

.grid-item:hover .title-overlay {
  opacity: 1;
	
}

.grid-item img:hover{
	overflow: hidden;
	  transform: scale(1.1);
}


/* Images with different sizes */
.grid-item.wide {
  grid-column: span 2;
}

.grid-item.tall {
  grid-row: span 2;
}

.grid-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
	padding-top:5%;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px; font-family: "Source Sans 3", sans-serif;
}

#caption {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px;
	 font-family: "Source Sans 3", sans-serif;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .portfolioT .grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .portfolioT .grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}































.footer {
    background-color: #111616; /* Fond sombre élégant */
    color: #ffffff; /* Texte blanc pour un bon contraste */
    font-family: 'Source Sans 3', sans-serif;
    padding: 2em 1em;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-info h3, 
.footer-social h4, 
.footer-links-list h4 {
    color: #92c01f; /* Couleur d'accent pour les titres */
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.footer-info p, 
.footer-social a, 
.footer-links-list a {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info p a, 
.footer-social a:hover, 
.footer-links-list a:hover {
    color: #92c01f; /* Accent sur les liens au survol */
}

.footer-social, 
.footer-links-list {
    margin-top: 1em;
}

.footer-social a, 
.footer-links-list a {
    margin-right: 1em;
}

.footer-bottom {
    text-align: center;
    margin-top: 2em;
    font-size: 0.9rem;
    color: #cccccc; /* Ton plus doux pour le texte secondaire */
}

.footer-bottom p {
    margin: 0.5em 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        margin-bottom: 1em;
    }

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

    .footer-social, 
    .footer-links-list {
        margin-top: 1em;
    }
}
.footer-logo img {
    max-width: 300px; /* Taille maximale du logo */
    height: auto; /* Conserve les proportions */
    display: block; /* Évite des problèmes de rendu dans certains navigateurs */
    margin: 0 auto; /* Centre le logo */
	z-index: 100;
}







.footer-divider {
    border: 0; /* Supprime le style par défaut */
    height: 2px; /* Épaisseur de la ligne */
    background-color: #92c01f; /* Couleur verte correspondant à votre thème */
    margin: 1.5em 0; /* Espacement autour de la ligne */
    width: 100%; /* Assure que la ligne prend toute la largeur */
}







/* chatbot */



/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 300px; /* Largeur initiale */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    z-index: 1000;
    opacity: 0; /* Initialement invisible */
    visibility: hidden; /* Le chatbot est caché */
    transition: opacity 0.5s ease, visibility 0s 0.5s; /* Effet de fondu et délai */
}

.chatbot-header {
    background-color: #111616;  /* Couleur verte de votre site */
    color: #92c01f;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    position: relative; /* Pour positionner la croix */
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #92c01f; /* Couleur rouge pour l'effet hover */
}

.chatbot-messages {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
    flex: 1;
    font-size: 1rem;
}

.chatbot-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
    display: inline-block;
    font-size: 1rem;
}

.bot-message {
    background-color: #f1f1f1;
    text-align: left;
}

.user-message {
    background-color: #92c01f;  /* Utilisation de la couleur de votre site */
    color: white;
    text-align: right;
}

.chatbot-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: calc(100% - 20px);
    margin: 10px;
}

.chatbot-send {
    padding: 10px;
    background-color: #92c01f;  /* Même couleur que votre site */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.chatbot-send:hover {
    background-color: #7a9b16;  /* Couleur légèrement plus foncée pour l'effet hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .chatbot-container {
        width: 240px; /* Réduire la largeur pour les petits écrans */
        bottom: 20px;
        right: 10px;
    }

    .chatbot-header h3 {
        font-size: 1rem; /* Ajuster la taille du titre */
    }

    .chatbot-messages {
        max-height: 250px; /* Réduire la hauteur du conteneur des messages */
    }

    .chatbot-input, .chatbot-send {
        font-size: 0.9rem; /* Réduire la taille de la police pour mieux s'adapter */
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        width: 200px; /* Encore plus petit sur les écrans très petits */
        bottom: 10px;
        right: 5px;
    }

    .chatbot-header h3 {
        font-size: 0.9rem; /* Titre plus petit sur les très petits écrans */
    }

    .chatbot-messages {
        max-height: 200px; /* Encore plus petit sur les petits écrans */
    }

    .chatbot-input, .chatbot-send {
        font-size: 0.8rem; /* Réduire davantage la taille des éléments */
    }
}












.devisA {
    font-family: "Source Sans 3", sans-serif;
    background-color: #111616;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}














.container {
    background-color: #222; /* Fond de la section formulaire */
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px; /* Limite la largeur du formulaire */
    box-sizing: border-box;
    margin: 0 20px; /* Espacement latéral pour petits écrans */
}

/* Titre du formulaire */
h2 {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    color: #92c01f; /* Couleur secondaire */
    margin-bottom: 20px;
}

/* Styles des étiquettes (labels) */
label {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

/* Styles des champs de saisie (input, select, textarea) */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #92c01f; /* Bordure avec couleur secondaire */
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Textarea pour le message supplémentaire */
textarea {
    resize: vertical; /* Permet de redimensionner la hauteur de la zone de texte */
    min-height: 100px;
}

/* Bouton d'envoi */
button {
    background-color: #92c01f; /* Couleur secondaire */
    color: #111616;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background-color: #7b9c1a; /* Un peu plus sombre au survol */
}

/* Mise en page responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    h2 {
        font-size: 24px;
    }

    label {
        font-size: 14px;
    }

    input, select, textarea, button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
    }

    label {
        font-size: 13px;
    }

    input, select, textarea, button {
        font-size: 13px;
    }
}


.containerDe {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    text-align: center; /* Centrage du contenu */
    margin: 0 auto;
}

h2 {
    font-family: "Montserrat", sans-serif;
    color: #92c01f; /* Couleur secondaire */
    margin-bottom: 20px;
}

p {
    font-family: "Source Sans 3", sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

/* Bouton retour à l'accueil */
.btn-back {
    background-color: #92c01f; /* Couleur secondaire */
    color: #111616;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

.btn-back:hover {
    background-color: #7b9c1a; /* Un peu plus sombre au survol */
}